6 lines
178 B
Text
6 lines
178 B
Text
|
#!/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 '*.*'
|