Skip to content

Instantly share code, notes, and snippets.

@zahid
Created June 5, 2015 13:07
Show Gist options
  • Save zahid/cb74cf67a2b216375f9b to your computer and use it in GitHub Desktop.
Save zahid/cb74cf67a2b216375f9b to your computer and use it in GitHub Desktop.
Find all two letter commands on $PATH
( IFS=:;
for p in $PATH; do
ls "$p" | egrep -x '.{2}' ;
done; )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment