top | item 36493204

(no title)

timf | 2 years ago

Since I'm bouncing between OSX and Linux a lot, I have a shell script with the same name on each that boils down to:

  if [ `uname` == "Darwin" ]; then
    pbcopy
  else
    xsel --clipboard
  fi

discuss

order

cerved|2 years ago

why not just alias?

timf|2 years ago

Could be an alias, I have a limited set of aliases for each type of system. But I keep a repository of hundreds of personal shell scripts and it fit better there.