Find all files between two timestamps
find /directory -name "*files*.txt" -type f -newermt "2022-11-09 10:04:59" ! -newermt "2022-11-09 10:50:01"
find /directory -name "*files*.txt" -type f -newermt "2022-11-09 10:04:59" ! -newermt "2022-11-09 10:50:01"
cd .../myproject/
nano -w .gitignore (filtered stuff, one on each row, *.old, *.backup etc)
git init
git add .
git commit -m "Initial release or whatever."
---
git status
nano -w changedfile.xxx
git diff changedfile.xxx
git add changedfile.xxx
git commit -m "Fixed a bug or whatever."
git push (if remote repository on gitlab etc.)
grep -Rl "look for this string" /path/ | xargs -I '{}' ./script '{}'
grep -Rl "look for this string" /path/ | xargs -I '{}' ls -l '{}'