summaryrefslogtreecommitdiff
path: root/graphs/piscine/glob_remove_shell/glob_remove_shell.sh
blob: c2e7ff7a53bb8a577f69e4a10ef4ba28ef72f1f9 (plain)
1
2
3
4
5
6
7
#!/bin/sh

fmt=*.${1:-"txt"}

for file in $(echo "$fmt"); do
	[ -e "$file" ] && rm "$file" || exit 1
done