dotfiles/home/private_dot_config/zsh/functions/noext

6 lines
178 B
Text
Raw Normal View History

2023-02-23 14:27:32 -06:00
#!/bin/zsh
##? noext - Find files with no file extension
# for fun, rename with: noext -exec mv '{}' '{}.sql' \;
find . -not \( -path '*/.git/*' -prune \) -type f ! -name '*.*'