The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




Thread: awk error
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 05-15-2008
gyankr gyankr is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 2
another error

local flist="$@"
local tempfile=`echo $flist`
local filelist=`cat $tempfile | awk '{
while (++i<=NF) {
split($i,x,"_");
y=(x[2]=="LANG")?4:3;
print x[y],y,$i}
}' | sort -t"-" +1 +2 | awk '{print $3}'`;

Now i am getting cannot open file fancy_LANG_STD_AU_2008-03-05.dat no such file or directory....

???