On Wed, Aug 22, 2018 at 11:33:51PM +0300, Gokan Atmaca wrote: > Hello > > I have a list like the one below. I want to separate those bigger than 101. > How > can this be done ? > > 715 1.1.1.1 > 322 2.2.2.2 > 152 3.3.3.3 > 61 4.4.4.4
awk '$1 > 101'
On Wed, Aug 22, 2018 at 11:33:51PM +0300, Gokan Atmaca wrote: > Hello > > I have a list like the one below. I want to separate those bigger than 101. > How > can this be done ? > > 715 1.1.1.1 > 322 2.2.2.2 > 152 3.3.3.3 > 61 4.4.4.4
awk '$1 > 101'