Search Results

Search: Posts Made By: maroom
3,328
Posted By Akshay Hegde
#8 should work, don't know whats going wrong I...
#8 should work, don't know whats going wrong I have tested like this

[akshay@aix Stuff]$ cat test
file1.XML.ftpfail.bz2
file2.XML.ftpfail.bz2
file3.XML.ftpfail.bz2
file4.XML.ftpfail.bz2
...
3,328
Posted By Akshay Hegde
Make it simple no need of 777 You can try...
Make it simple no need of 777

You can try if your interest is just to unzip files rather than unzipping specific files in a file.lst

for i in *.bz2; do
bunzip2 $i
done

did you try post...
3,328
Posted By Akshay Hegde
There might be carriage-returns can you post o/p...
There might be carriage-returns can you post o/p of od -c file.lst
3,328
Posted By Akshay Hegde
set IFS and read line IFS=$(echo -en...
set IFS and read line


IFS=$(echo -en "\n\b")
while read i; do
bunzip2 "$i"
done <"file.lst"
3,328
Posted By Akshay Hegde
Put double quote and try bunzip2 "$i"How is...
Put double quote and try

bunzip2 "$i"How is your file.lst ?
Showing results 1 to 5 of 5

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