You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
392 B
14 lines
392 B
#!/bin/sh
|
|
[ -f /etc/banner ] && cat /etc/banner
|
|
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
|
export HOME=/tmp
|
|
export PS1='\u@\h:\w\$ '
|
|
|
|
[ -x /bin/more ] || alias more=less
|
|
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
|
|
|
|
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
|
|
|
|
[ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
|
|
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
|
|