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