diff --git a/.config/bash/module/find.sh b/.config/bash/module/find.sh index 6f30ba3..da93f02 100644 --- a/.config/bash/module/find.sh +++ b/.config/bash/module/find.sh @@ -2,6 +2,5 @@ find_ext() { local types=($(find -type f | sed -e "s/.*\///" -e "s/^\.//" -e "/\./!d" -e "s/.*\.//")) - echo "${types[@]}" | tr ' ' '\n' | sort -u | tr '\n' ' ' - echo + echo "${types[@]}" | tr ' ' '\n' | sort -u }