02
Jul
Tag Archives: head
13
Apr
First Two Lines
View first two lines of a file
head -2 file
tail -2 file # for last 2 lines
14
Dec
Pid Command
Create a command that will return the pid of the given command string..
#!/bin/sh
ps aux|grep 1|head -n1|awk '{print2}'