dotfiles/home/private_dot_config/zsh/functions/executable_noext

6 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 '*.*'