barbara@lemmy.ml to Linux@lemmy.ml · 9 months agowhy does noone inprove bash such that you can write a normal foor loop with whitespace in file names?message-squaremessage-square7fedilinkarrow-up119arrow-down110file-text
arrow-up19arrow-down1message-squarewhy does noone inprove bash such that you can write a normal foor loop with whitespace in file names?barbara@lemmy.ml to Linux@lemmy.ml · 9 months agomessage-square7fedilinkfile-text
minus-squareiusearchbtw@lemm.eelinkfedilinkarrow-up13·9 months agoAm I not reading your question right? Just quote the variable and filenames with spaces work fine. for i in *; do cat "$i" ; done
Am I not reading your question right? Just quote the variable and filenames with spaces work fine.
for i in *; do cat "$i" ; done