aboutsummaryrefslogtreecommitdiff
path: root/urlssave
blob: 85c7a6fec6b83ed58c376d1c9c2be51d9f3f61ec (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
#
# Save multiple URLs using the same tags.
#

# Dispatch
while read url; do
  urlsave $url $*
done