Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mclip 141B

1234567891011
  1. #/bin/bash
  2. OS=$(uname)
  3. content=$(cat -)
  4. if [ "$OS" = "Darwin" ]; then
  5. echo -n "$content" | pbcopy
  6. else
  7. echo -n "$content" | xsel -ib
  8. fi