Search Results

Search: Posts Made By: sudheer vaddi
4,271
Posted By sudheer vaddi
try this if [ "$A" -eq "y" || "$A" -eq "Y" ] ...
try this
if [ "$A" -eq "y" || "$A" -eq "Y" ]
and check spaces
18,467
Posted By sudheer vaddi
awk '{print $1,$2}' file I think this also...
awk '{print $1,$2}' file

I think this also works
2,925
Posted By sudheer vaddi
awk 'BEGIN {big=$1} {if($1>big) big=$1} END...
awk 'BEGIN {big=$1} {if($1>big) big=$1} END {print big}' input_file

you can use this code to find the biggest number. and here $1 means first field i,e here we are having only one column.
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 06:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy