2
How to make a find on GNU Linux bring all files from a folder, ignoring the files from a specific subdirectory.
2
How to make a find on GNU Linux bring all files from a folder, ignoring the files from a specific subdirectory.
3
If you want to delete the directory "example"
find . -path ./exemplo -prune -o -name 'arquivo.html'
Browser other questions tagged linux shell-script
You are not signed in. Login or sign up in order to post.
Thank you very much.
– erms