1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 05:57:32 +02:00

Prefer real executables when available (#1296)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7232 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-05-14 18:19:07 +00:00
parent b4313e72fe
commit bef444d0b4

View File

@ -5,10 +5,10 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export HOME=/tmp export HOME=/tmp
export PS1='\u@\h:\w\$ ' export PS1='\u@\h:\w\$ '
alias more=less [ -x /bin/more ] || alias more=less
[ -x /usr/bin/vim ] || alias vim=vi [ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc [ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
arp() { cat /proc/net/arp; } [ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; } [ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }