11 lines
140 B
Bash
Raw Normal View History

2025-01-24 10:04:28 +05:30
#!/bin/sh
echo "Deleteing the following files"
for file in "$@";do
echo "$file"
rm -i "$file"
done
echo "All files deleted successfully"