This package adds support for /etc/shinit and ~/.shinit files, which contain commands to be run at the start of all interactive shells. (/etc/profile and ~/.profile are read for login shells only.) This is useful for those who regularly open non-login, interactive shells, for example users of GNU Screen or tmux. (This is based on a patch[1] I submitted for OpenWrt master, but there does not appear to be much interest in merging the change.) (This package uses the ENV shell variable, of which the POSIX standard has a brief description[2]. The dash manpage[3] also describes how the ENV variable is handled. (dash is the basis for busybox ash.)) [1]: https://patchwork.ozlabs.org/patch/1094493/ [2]: https://pubs.opengroup.org/onlinepubs/9699919799//utilities/V3_chap02.html#tag_18_05_03 [3]: https://manpages.debian.org/buster/dash/dash.1.en.html#Invocation Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 lines
780 B
Text
23 lines
780 B
Text
[ -x /bin/more ] || alias more=less
|
|
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
|
|
|
|
alias ll='ls -alF --color=auto'
|
|
|
|
# If you use mksh and want to source /etc/mkshrc for all interactive shells,
|
|
# uncomment the following line and comment out the same line in /etc/profile.
|
|
#[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
|
|
|
|
[ -x /usr/bin/arp -o -x /sbin/arp ] || arp() { cat /proc/net/arp; }
|
|
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
|
|
|
service() {
|
|
[ -f "/etc/init.d/$1" ] || {
|
|
echo "service "'"'"$1"'"'" not found, the following services are available:"
|
|
ls "/etc/init.d"
|
|
return 1
|
|
}
|
|
/etc/init.d/$@
|
|
}
|
|
|
|
[ -n "$KSH_VERSION" -o \! -s "$HOME/.shinit" ] || . "$HOME/.shinit"
|
|
[ -z "$KSH_VERSION" -o \! -s "$HOME/.mkshrc" ] || . "$HOME/.mkshrc"
|