This is an old revision of the document!
There are a number of good resources on the web. Here's one of them:
passwd
There is a 12-character minimum length requirement on the cluster.
pwd - print working directory ls - list files cd - change directory less - file pager file - describes type of a file
cp - copy mv - move (rename) rm - remove (delete) mkdir - make directory rmdir - remove directory
Choose an editor:
nano vi emacs
#!/bin/bash ...
Make a script file “executable”:
chmod u+x scriptname
man COMMAND man ls
Save output from a command to file.
ls > file.txt
screen