minus-squarehades@feddit.uktoLinux@lemmy.ml•foreach - Bash alias to execute command on each linelinkfedilinkarrow-up1·9 days 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