File System Commands

File Structure

df -lah  

Directory and File Size

du -hc * 
du -shc ./*
du -sh ./  
du -sh * | sort -h  

List Directories

ls -lah
ls -lath 
ls | wc -l  
ls -d */

Copy Files

cp /home/usr/filename.jpg{,-bak}
cp /home/usr/*.jpg{,-bak)  
pwd
cd /foo/bar/directory
cd ..
cd ../..
cd -

Rename File Extensions

rename .php.bak .php *  

Rsync Commands

rsync -ve ssh usrname@remoteipaddress:/path/to/remotedir/* /path/to/localdir/ 
rsync -rve ssh usrname@remoteipaddress:/path/to/remotedir/* /path/to/localdir/

Other File System Commands

See Grep, Find, and AWK for other useful file system commands.