Hacker News new | ask | show | jobs
by mhouse 3950 days ago
In light of the recent interest in fish shell, the equivalent in fish is:

  function clip
    if not tty >/dev/null
      pbcopy
    else
      pbpaste
    end
  end