Add keyword 'function' in front of function definitions.

This commit is contained in:
Scott Wallace 2016-07-28 16:05:50 +01:00
parent 329584c585
commit c5e533299e

14
.bashrc
View file

@ -40,7 +40,7 @@ getkey() {
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
# The best editor # The best editor
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
[[ -x $(which vim 2>/dev/null) ]] && vi() { vim ${@}; } && export -f vi [[ -x $(which vim 2>/dev/null) ]] && function vi() { vim ${@}; } && export -f vi
export EDITOR=vi export EDITOR=vi
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
@ -121,13 +121,13 @@ export PROMPT_COMMAND="history -a; ${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}"
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
# Command alias functions # Command alias functions
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
datafart() { curl --data-binary @- datafart.com; } && export -f datafart function datafart() { curl --data-binary @- datafart.com; } && export -f datafart
space() { du -ahx --max-depth=1 | sort -h; } && export -f space function space() { du -ahx --max-depth=1 | sort -h; } && export -f space
if ! alias ll >/dev/null 2>&1; then function ll() { ls -l ${@}; } && export -f ll; fi if ! alias ll >/dev/null 2>&1; then function ll() { ls -l ${@}; } && export -f ll; fi
[[ ! -x $(which psgrep 2>/dev/null) ]] && psgrep() { ps -ef | grep ${@} | grep -v ${$}; } && export -f psgrep [[ ! -x $(which psgrep 2>/dev/null) ]] && function psgrep() { ps -ef | grep ${@} | grep -v ${$}; } && export -f psgrep
[[ -x $(which htop 2>/dev/null) ]] && top() { sudo htop; } && export -f top [[ -x $(which htop 2>/dev/null) ]] && function top() { sudo htop; } && export -f top
[[ -x $(which gdu 2>/dev/null) ]] && du() { gdu ${@}; } && export -f du [[ -x $(which gdu 2>/dev/null) ]] && function du() { gdu ${@}; } && export -f du
[[ -x $(which gsort 2>/dev/null) ]] && sort() { gsort ${@}; } && export -f sort [[ -x $(which gsort 2>/dev/null) ]] && function sort() { gsort ${@}; } && export -f sort
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------