1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/utils/cfioff
2016-06-13 13:04:54 +02:00

9 lines
148 B
Bash
Executable file

#!/bin/sh
for program in find grep rm; do
rm -f "/bin/$program.cfg"
done
find / | \
grep -E '\.cfg$' | \
while read file; do
rm -v "$file"
done