I sometimes have to transfer files with spaces in the names, I like using a for loop, but the usual way doesn’t work. Usual way:
for file in `find . -type f|grep .ext$`
do
/do/something/to $file
done
To get around this I use a while loop with a read instead. Using the read will read to the end of the line, enclosing within quotes escapes the spaces. Unusual way:
find . -type f|grep .ext$ |while read file
do
/do/something/to "$file"
done
1 comment:
If we want to find for example the ocupation of all pdf files, we can adapt it like this:
let sum=0;find . -type f -name *.pdf | while read file; do echo $file; let temp=$(du "$file" | awk '{print $1}'); let sum=$sum+$temp; echo "sum is "$sum" bytes";done
Post a Comment