I do this quiet regularly in order to remove all node_modules or .git folders:
find . -type d -name "XYZ" -exec rm -rf {} \;
You can drop this statement while being in the parent directory. I put this terminal statement into a *.sh file which allows me to execute it easily.
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reply to: OSX Terminal Help
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on "OSX Terminal Help"
Collapse
-
I think it'sOriginally posted by DaveB View PostShould be able to do it using Spotlight to search for folders named XYZ within the root folder. Then just highlight and drag and drop to the trash.
Type XYZ into the search window in Finder, then click the little + button underneath it and modify the search terms to "Kind" "Folder".
If you are feeling brave you could use the command line via Find and RM, strongly suggest making it interactive with the -i flag on RM!
cd <folder>
Find . -name "xyz" -exec rm -ri "{}" \;
That should find all files with the name "xyz" recursively within the top level folder and delete them asking you to confirm each deletion in turn.
find . -name "xyz" -exec rm -rf {} \;
But then I've only been working with Unix for 30 years
The above command will generate lots of errors as the xyz directories disappear under find's feet, but not to worry
Leave a comment:
-
Should be able to do it using Spotlight to search for folders named XYZ within the root folder. Then just highlight and drag and drop to the trash.Originally posted by SimonMac View PostDear Lazyweb, I have a folder on OSX with about 150 other folders within, most of the other folders have a folder in it call XYZ, how would I go about deleting all XYZ folders and anything in that folder without removing anything else.
Type XYZ into the search window in Finder, then click the little + button underneath it and modify the search terms to "Kind" "Folder".
If you are feeling brave you could use the command line via Find and RM, strongly suggest making it interactive with the -i flag on RM!
cd <folder>
Find . -name "xyz" -exec rm -ri "{}" \;
That should find all files with the name "xyz" recursively within the top level folder and delete them asking you to confirm each deletion in turn.Last edited by DaveB; 2 February 2017, 09:47.
Leave a comment:
-
OSX Terminal Help
Dear Lazyweb, I have a folder on OSX with about 150 other folders within, most of the other folders have a folder in it call XYZ, how would I go about deleting all XYZ folders and anything in that folder without removing anything else.Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Zero Hours Contract Reform: A key consultation for recruiters, employers and contractors is finally here Jun 12 04:43
- Bills of Exchange: Here’s what caught my attention as an umbrella compliance expert Today 03:46
- Loan charge recall issue returns, with new demands making UK contractors ‘half-suicidal’ Yesterday 03:58
- AI interviews are here. Here's how IT contractors can ace them Jun 9 06:53
- Closing your limited company isn't failure. It's just the end of a chapter. Jun 8 05:00
- Young people not in education, employment or training isn’t a contractor’s problem. It’s a problem for us all Jun 5 05:26
- How does HMRC’s forward interest change benefit contractors? Jun 4 04:22
- What are Bills of Exchange, and should HMRC's alert worry umbrella contractors? Jun 3 04:09
- Bills of Exchange fail to avoid new umbrella company rules, says HMRC Jun 2 05:32
- Is permanent employment still the safer bet? Yes, but it's a lot less safe than it used to be. Jun 1 04:34

Leave a comment: