add useful commands

This commit is contained in:
alexandre medeiros 2013-09-22 11:35:04 -03:00
parent 182eab6051
commit b3288dc9cd

View File

@ -127,4 +127,16 @@ foo ()
# Calling your function # Calling your function
foo "My name is" $NAME foo "My name is" $NAME
# There are a lot of useful commands you should learn:
tail -n 10 file.txt
# prints last 10 lines of file.txt
head -n 10 file.txt
# prints first 10 lines of file.txt
sort file.txt
# sort file.txt's lines
uniq -d file.txt
# report or omit repeated lines, with -d it reports them
cut -d ',' -f 1 file.txt
# prints only the first column before the ',' character
``` ```