linux - How to list all the programs that are available to a given account on a cluster? -
at university working under prof ga. gave me access cluster. want know list of tools/softwares can run using account. have no idea tools availble on machine.
echo $path | tr ":" "\n" | while read line; echo $line; ls $line; done
be prepared tons of output. might better off doing echo $path first , looking interesting-looking directories, or seeing if tab-completion works (just type 'c', tab, see if shows 'cat', 'cd', etc).
really tho, ask prof whatever docs you're supposed have, tools you're looking aren't obvious name of command.
Comments
Post a Comment