document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function search-replace {
  2.     search="$1"
  3.     replace="$2"
  4.     xclip -o | sed "s/$search/$replace/g" | xclip -sel clip
  5. }
');