Click here to Skip to main content
15,884,237 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have tried ls -lR / | grep '^d' | grep 'bin$' to display all directories from root.

Now I need to display all the commands(data inside bin), which is exactly having 2 words.

Please help.
Posted
Comments
Sergey Alexandrovich Kryukov 22-Nov-12 2:08am    
Not clear what exactly you are trying to achieve. What is a "command", in this context?
And this is off-topic, in fact: this is a forum for software developer, but the question is from the standpoint of a regular user.
--SA
srmohanr 22-Nov-12 3:30am    
I framed my question wrongly. 2 letter commands like rm, ls, cp..

1 solution

It's a while since I have used ksh but something like:
find . -name -exec grep '[a-zA-Z][a-zA-Z]'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900