whitespace fixes in base.plugin.bash

pull/442/head
Ivan Povalyukhin 2015-03-29 14:02:31 -07:00
parent 07c4cb6f5e
commit 10ea42dc75
1 changed files with 4 additions and 8 deletions

View File

@ -25,7 +25,6 @@ function myip ()
echo -e "Your public IP is: ${echo_bold_green} $res ${echo_normal}" echo -e "Your public IP is: ${echo_bold_green} $res ${echo_normal}"
} }
function pickfrom () function pickfrom ()
{ {
about 'picks random line from file' about 'picks random line from file'
@ -92,7 +91,6 @@ function lsgrep ()
ls | grep "$*" ls | grep "$*"
} }
function pman () function pman ()
{ {
about 'view man documentation in Preview' about 'view man documentation in Preview'
@ -102,7 +100,6 @@ function pman ()
man -t "${1}" | open -f -a $PREVIEW man -t "${1}" | open -f -a $PREVIEW
} }
function pcurl () function pcurl ()
{ {
about 'download file and Preview it' about 'download file and Preview it'
@ -125,16 +122,16 @@ function quiet ()
{ {
about 'what *does* this do?' about 'what *does* this do?'
group 'base' group 'base'
$* &> /dev/null & $* &> /dev/null &
} }
function banish-cookies () function banish-cookies ()
{ {
about 'redirect .adobe and .macromedia files to /dev/null' about 'redirect .adobe and .macromedia files to /dev/null'
group 'base' group 'base'
rm -r ~/.macromedia ~/.adobe rm -r ~/.macromedia ~/.adobe
ln -s /dev/null ~/.adobe ln -s /dev/null ~/.adobe
ln -s /dev/null ~/.macromedia ln -s /dev/null ~/.macromedia
} }
function usage () function usage ()
@ -184,7 +181,6 @@ function command_exists ()
mkiso () mkiso ()
{ {
about 'creates iso from current dir in the parent dir (unless defined)' about 'creates iso from current dir in the parent dir (unless defined)'
param '1: ISO name' param '1: ISO name'
param '2: dest/path' param '2: dest/path'