Tag: files
Command to Sort Files by Size
February 1, 2008
Show size of the files and directories sorted by size du -sk * | sort -rn
cmp Command – Compare Files
December 25, 2007
The command cmp is similar to diff: # cmp file1 file2 file1 file2 differ: byte 10, line 1
Basic Diff
December 22, 2007
If you use the diff command, you will be able to see the difference between the files as shown below:…
Concatinate Files in Linux
October 6, 2007
This is how you concatinate multiple files in linux… cat file1 file2 file3 > final_file
Change the Extension of Multiple Files in Linux
March 8, 2007
In this example, we will change all files with extension ‘.info’ to ‘.txt’. Rename all *.info files in one folder…
Recent Comments