hi all I have a folder that has folders with lots of different names. However I want to find all the folder that start with RUN and have a subfolder of complete. How can I do such a thing in terminal?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
As Mac OS X is UNIX based you can use many terminal programs found on Linux etc. too. Therefore this question is not necessarily OS X related. Using
This gives you a list like
With ´sed´ you can extract from this the individual folder names:
which gives you a list like you're looking for:
|
|||
|
|
/Run3289/complete/and/Run3221/complete/– Badmiral Feb 25 at 15:05