1 2 3 4 5 6 7 8 9 10
#!/bin/bash # # Save multiple URLs using the same tags. # # Dispatch while read url; do echo "Saving $url..." urlsave $url $* done