2009/2/19 Aswin S <[email protected]>: > try ls /usr/bin | grep command. if that is what you need. > tou can simply type the first few letters of the command and press tab.
IFS=':'; for i in `echo $PATH`; do echo $i|xargs ls; done You can see all commands in the system with above command, if you want to store it in a file, use IFS=':'; for i in `echo $PATH`; do echo $i|xargs ls; done >/tmp/commands.txt use any text editor to see it. gedit /tmp/commands.txt -- പ്രവീണ് അരിമ്പ്രത്തൊടിയില് <GPLv2> I know my rights; I want my phone call! <DRM> What use is a phone call, if you are unable to speak? (as seen on /.) Join The DRM Elimination Crew Now! http://fci.wikia.com/wiki/Anti-DRM-Campaign --~--~---------~--~----~------------~-------~--~----~ "Freedom is the only law". "Freedom Unplugged" http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups "ilug-tvm" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For details visit the website: www.ilug-tvm.org or the google group page: http://groups.google.com/group/ilug-tvm?hl=en -~----------~----~----~----~------~----~------~--~---
