debian-user:
Please ignore previous post.
David
On 08/22/2018 01:33 PM, Gokan Atmaca wrote:
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
2018-08-22 18:28:07 dpchrist
On 08/22/2018 01:33 PM, Gokan Atmaca wrote:
715 1.1.1.1
322 2.2.2.2
152 3.3.3.3
61 4.4.4.4
2018-08-22 18:28:07 dpchrist@vstretch ~/sandbox/debian
$ cat gokan-atmaca-20180822-1333.txt
715 1.1.1.1
322 2.2.2.2
152 3.3.3.3
61 4.4.4.4
2018-08-22 18:28:12 dpchrist@vstretch ~/sa
> awk '$1 > 100' num
Very thanks...
On Wed, Aug 22, 2018 at 11:41 PM Emmanuel Gelati wrote:
>
> If you want to print the bigger then 101 on the column
>
> awk '$1 > 100' num
>
yes, that was a typo.
2018-08-22 22:42 GMT+02:00 Greg Wooledge :
> 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
>
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'
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
Thanks.
6 matches
Mail list logo