diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-05-14 18:19:07 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-05-14 18:19:07 +0000 |
commit | 1518889ffac426e045b83d111f32b2df141aa60e (patch) | |
tree | 66f6bf244660e557928f384101bfba098758f227 /package/base-files/files/etc/profile | |
parent | 4919d469825f158dfbc903e7cdfa3372e8409ba3 (diff) | |
download | mtk-20170518-1518889ffac426e045b83d111f32b2df141aa60e.zip mtk-20170518-1518889ffac426e045b83d111f32b2df141aa60e.tar.gz mtk-20170518-1518889ffac426e045b83d111f32b2df141aa60e.tar.bz2 |
Prefer real executables when available (#1296)
SVN-Revision: 7232
Diffstat (limited to 'package/base-files/files/etc/profile')
-rw-r--r-- | package/base-files/files/etc/profile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/base-files/files/etc/profile b/package/base-files/files/etc/profile index 8aac3b7..5cb83c9 100644 --- a/package/base-files/files/etc/profile +++ b/package/base-files/files/etc/profile @@ -5,10 +5,10 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin export HOME=/tmp export PS1='\u@\h:\w\$ ' -alias more=less -[ -x /usr/bin/vim ] || alias vim=vi +[ -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 -arp() { cat /proc/net/arp; } +[ -x /sbin/arp ] || arp() { cat /proc/net/arp; } [ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; } |