minus-squarehades@feddit.uktoLinux@lemmy.ml•foreach - Bash alias to execute command on each linelinkfedilinkarrow-up11·1 day agoNice! I used to do something like this, which avoids xargs altogether: cat urls.txt | while read url; do echo download $url; done linkfedilink
Nice! I used to do something like this, which avoids xargs altogether:
cat urls.txt | while read url; do echo download $url; done