Showing posts with label Directory. Show all posts
Showing posts with label Directory. Show all posts

Wednesday, March 30, 2011

Directory Listing

show subdirectorypwd
list files and directoriesls
list files and directories (one per line)ls -l
list files beginning with 'Adams'ls adams*
list files by screenfulls | more

Compare Files and Directories

compare two directoriesdiff /directory1 /directory2
compare two filescmp file1 file2
compare two files and show specific differences-i=ignore case-b=ignore blanks-w=ignore spaces and tabsdiff -iwb file1 file2
compare two files side-by-side| lines are the same< line is in first file only> line is in second file onlysdiff file1 file2
compare two files side-by-side showing only differencessdiff -s file1 file2

Change / Make Directory

make a directorymkdir subdir
change to a subdirectory beneath where you arecd subdir
change to a subdirectory of the rootcd /subdir
change to a subdirectory under your home directorycd ~/subdir
change to home directorycd
change up one levelcd ..

Monday, March 21, 2011