diff --git a/src/bin/se b/src/bin/se index ea8df4b..04bcf50 100755 --- a/src/bin/se +++ b/src/bin/se @@ -8,5 +8,5 @@ if [ $# -eq 1 ] ; then esac else script=$(find ~/.local/bin -type f | sk --preview 'cat {}') - [ ! -z "$script" ] && $EDITOR $script || exit 0 + [ -n "$script" ] && $EDITOR "$script" || exit 0 fi