mirror of
https://github.com/junegunn/fzf
synced 2024-11-16 12:12:48 +00:00
fzf-preview.sh: Check the number of arguments
This commit is contained in:
parent
9a95cd5794
commit
1cfa3ee4c7
@ -7,7 +7,12 @@
|
||||
# - https://github.com/hpjansson/chafa
|
||||
# - https://github.com/sharkdp/bat
|
||||
|
||||
file=$1
|
||||
if [[ $# -ne 1 ]]; then
|
||||
>&2 echo "usage: $0 FILENAME"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
file=${1/#\~\//$HOME/}
|
||||
type=$(file --mime-type "$file")
|
||||
|
||||
if [[ ! $type =~ image/ ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user