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

  $BROWSER $argv &>/dev/null &
  disown
end