Hi All,
I have some files in my directory, and i want to pull all data using for loop....I am using following code but getting error..!
for file in {file1, file2, file3, ..... filen}
do
L="$(tail -1 $file)";NUM=${L%%|*};DAT=${L##*|}
echo $NUM>>filedata.txt
done
Error:
tail: cannot open input
tail: cannot open input
i tried with other codes, some gave blank data and some something else.....but can understand where the prob is.... 
please help