Update sample hushenv file, using "$@" so arguments with spaces will be handled properly.

This commit is contained in:
Stephen Heumann 2015-01-16 19:09:50 -06:00
parent 988683c572
commit 24b49d61e7
1 changed files with 1 additions and 1 deletions

View File

@ -1 +1 @@
# Sample hushenv file for GNO. # Can be installed as /etc/hushenv or $HOME/hushenv. # Define standard commands that don't exist as binaries in GNO 2.0.6 rm () { cp -p rm $@; } mv () { cp -p mv $@; } make () { dmake $@; } # Use gsh to run a few of its builtins that hush doesn't have edit () { gsh edit $@; } setdebug () { gsh setdebug $@; }
# Sample hushenv file for GNO. # Can be installed as /etc/hushenv or $HOME/hushenv. # Define standard commands that don't exist as binaries in GNO 2.0.6 rm () { cp -p rm "$@"; } mv () { cp -p mv "$@"; } make () { dmake "$@"; } # Use gsh to run a few of its builtins that hush doesn't have edit () { gsh edit "$@"; } setdebug () { gsh setdebug "$@"; } clear () { gsh clear "$@"; }