11 lines
140 B
Bash
11 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Deleteing the following files"
|
||
|
|
||
|
for file in "$@";do
|
||
|
echo "$file"
|
||
|
rm -i "$file"
|
||
|
done
|
||
|
|
||
|
echo "All files deleted successfully"
|