aboutsummaryrefslogtreecommitdiff
path: root/example/download.sh
blob: 4698d38be09fb73aaf02251f16e6e7a83d875187 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
# This toy example uses wget and the --target mode to act
# as a drag-and-drop download tool.

../dragon --target | while read url
do
    wget "$url"
done
bgstack15