aboutsummaryrefslogtreecommitdiff
path: root/functions/www.fish
blob: 0ae1e8644a17bf6ae844bdc59298fd91aee98c71 (plain)
1
2
3
4
5
6
7
8
function www --description "Browse the WWW"
  if test -z $argv
    webbrowser &>/dev/null
    return
  end

  webbrowser $argv &>/dev/null
end