Posts Tagged With: head

First Two Lines

Tagged with: , , , ,

View first two lines of a file


head -2 file

tail -2 file # for last 2 lines
No Comments »

Pid Command

Tagged with: , , , , , , ,

Create a command that will return the pid of the given command string..


#!/bin/sh
ps aux|grep $1|head -n1|awk '{print $2}'
No Comments »