Delete files from a text file
2024-01-07
If you got a list of file to delete, save them in a text file then run this command: while read -r file; do rm — “$file”; done < file_to_delete.txtRead More →
If you got a list of file to delete, save them in a text file then run this command: while read -r file; do rm — “$file”; done < file_to_delete.txtRead More →
Why things are broken ? It’s simply because of changes. Can we avoid changes? No. Changes could be come from internal or external. Do we know what will be impacted if there is a tiny change? A good system can track about 90% what is related. There are some minor changes that might be never recorded. We can’t avoid change, we know we might miss something, so let minimize the risk. How can we do that? we need a system to monitor our system, if something go wrong, that monitor system will trigger an alert for us and we can take action as soon asRead More →