From 24b49d61e724cf66d75ef3da3c91bb2874181df9 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Fri, 16 Jan 2015 19:09:50 -0600 Subject: [PATCH] Update sample hushenv file, using "$@" so arguments with spaces will be handled properly. --- etc/hushenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/hushenv b/etc/hushenv index 2b28cc90f..e05487554 100644 --- a/etc/hushenv +++ b/etc/hushenv @@ -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 $@; } \ No newline at end of file +# 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 "$@"; } \ No newline at end of file