diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2005-07-04 20:19:06 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-04 20:19:06 +0000 |
| commit | 607488e12fa12f412cf1b4cdeb5b37b1adce99af (patch) | |
| tree | de047c1bff3a92ff25b09ba4b5d258e3b1d75051 | |
| parent | aa2215436ff9d11c20ae51d1c49351b88a805350 (diff) | |
| download | upstream-607488e12fa12f412cf1b4cdeb5b37b1adce99af.tar.gz upstream-607488e12fa12f412cf1b4cdeb5b37b1adce99af.tar.bz2 upstream-607488e12fa12f412cf1b4cdeb5b37b1adce99af.zip | |
only set alias less=more when less is not installed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1341 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/target/default/target_skeleton/etc/profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/target/default/target_skeleton/etc/profile b/openwrt/target/default/target_skeleton/etc/profile index b63dc8ee32f..1d98ae3402e 100644 --- a/openwrt/target/default/target_skeleton/etc/profile +++ b/openwrt/target/default/target_skeleton/etc/profile @@ -4,7 +4,7 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin export PS1='\u@\h:\w\$ ' -alias less=more +[ -x /usr/bin/less ] || alias less=more alias vim=vi arp() { cat /proc/net/arp; } |
