dragon

Fork of dragon, a GUI utility for drag-and-drop file transfers
git clone git://git.laack.co/dragon.git
Log | Files | Refs | README

download.sh (165B)


      1 #!/bin/sh
      2 # This toy example uses wget and the --target mode to act
      3 # as a drag-and-drop download tool.
      4 
      5 ../dragon --target | while read url
      6 do
      7     wget "$url"
      8 done