Front | Back |
Create file
|
Cat > filename
|
Merge files
|
Cat file1 file2 > mergefilename
|
Get few lines
|
Head -n to get rows from toptail -n to get rows from bottom
|
Get particular line
|
Sed -n 2p
|
Select a column
|
Cut -d "," -f 2
|