Search Results

Search: Posts Made By: admax
1,138
Posted By Chubler_XL
Wouldn't you be better off setting the LD_LibPATH...
Wouldn't you be better off setting the LD_LibPATH environment variable in the ~/.profile or ~/.bashrc on each machine?

If you can't use login profile, for whatever reason, you may be able to use...
96,891
Posted By user8
About how to print: "last row with fifth column;...
About how to print: "last row with fifth column; in each file":
END{ print $5 }or in case you are using gawk 4.x:
ENDFILE{ print $5 }
3,128
Posted By Corona688
Thank you for filling out the template. You...
Thank you for filling out the template. You wouldn't believe how many try to sneak by it.

You've made a solid try but there's a lot of syntax problems you need to clean up. There's also much...
28,740
Posted By Franklin52
Maybe something like this? awk -F"|" '{print...
Maybe something like this?
awk -F"|" '{print $1, $2<0?$2*-1:$2}' file
3,816
Posted By jim mcnamara
awk ' /^>/ { file=substr($0,2)} { print $0 >...
awk ' /^>/ { file=substr($0,2)} { print $0 > file} ' inputfile
119,960
Posted By vgersh99
sort -k3n,3 data.file or sort -b...
sort -k3n,3 data.file

or

sort -b -k3n,3 data.file
Showing results 1 to 6 of 6

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