7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
|
|
prefix=$HOME/Nextcloud/Papers/
|
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | fzf)
|
|
|
|
test -n "$choice" && evince $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &
|