Part 3 - Unix/Linux for Testers | touch, pwd & ls Commands

You can download free Linux VM Images : Online Linux terminal : Notes: ------------- ls : List Files ls -l : shows file or directory, size, modified date and time, file or folder name and owner of file and its permission. ls -a : view hidden files touch . ls -a ls -l -a : detailed listing files along with hiddwn files ls -F : will add the ‘/’ Character at the end each directory. ls -r : display files and directories in reverse order. ls -R : displays directories along with sub subdirectories ls -lS : displays file size in order, will display big in size first. ls -l Documents : list files under directory Documents wild card characters -------- ? Single character * Multiple characters [ ] Range of values ls ?.* Output: ls ?.doc Output: ls ?.txt Ou
Back to Top