-
Notifications
You must be signed in to change notification settings - Fork 0
Bash Commands
superstringer edited this page Apr 15, 2019
·
1 revision
$ shuf -n N input.txx > output.txt
$ wc -l file.txt
$ expand -t 4 input.txt > output.txt
$ sed -n 101,215p infile.csv > outfile.csv
$ sed -e '17d' infile.txt > outfile.txt
$ sed -e '3d;11,17d;45d' infile.txt > outfile.txt
To create a backup of the original file use -i.bak with the command
$ sed -i.bak -e '3d;11,17d;45d' infile.txt
$ strings pic.png | less