All pastes #1898752 Raw Edit

surf-google

public text v1 · immutable
#1898752 ·published 2010-07-12 03:22 UTC
rendered paste body
#!/bin/bash

CLIPBOARD=$(xclip -o)

# put this in the backup
# soon

# I want to use the =~ but does not seem to be working for me
#if [ "$CLIPBOARD" =~ 'http://' ]

if [ $(expr "$CLIPBOARD" : '\(http://\)') ]
then
  surf "$CLIPBOARD"
else 
  surf "http://www.google.com/search?q=$CLIPBOARD"
fi