Created
June 13, 2023 12:52
-
-
Save tbvinh/05900e180c325b1e9063531292a3281a to your computer and use it in GitHub Desktop.
del all files in a file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TO_BE_DEL="$1" | |
IFS="" | |
while read -r file ; do | |
rm -rf "$file" | |
done < "$TO_BE_DEL" | |
#usage: delFromFile.sh file.txt | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment