summaryrefslogtreecommitdiff
path: root/functions/wdl.fish
blob: e229f0f5ac8074880a7808391439467a0be3bfd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function wdl  --wraps "wget" --description "Download a whole website"
  echo 'Use --domains XX and --no-parent XXX to have get clean links\n'
  wget \
     --continue \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --restrict-file-names=windows \
     $argv
  #  --domains box.ache.one \
  #  --no-parent \ "box.ache.one:1080"
end