mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
Update sample hushenv file, using "$@" so arguments with spaces will be handled properly.
This commit is contained in:
parent
988683c572
commit
24b49d61e7
@ -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 "$@"; }
|
Loading…
Reference in New Issue
Block a user