Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Created June 13, 2023 12:52
Show Gist options
  • Save tbvinh/05900e180c325b1e9063531292a3281a to your computer and use it in GitHub Desktop.
Save tbvinh/05900e180c325b1e9063531292a3281a to your computer and use it in GitHub Desktop.
del all files in a file
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