citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

visual-curl (107B)


      1 #!/usr/bin/env bash
      2 
      3 tmpfile=$(mktemp)
      4 curl -sL "$@" > "$tmpfile"
      5 urxvtc -e less $tmpfile
      6 rm -f "$tmpfile"