mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
9 lines
148 B
Bash
Executable file
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
|