summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/profile
blob: ae514b09246579c0489c19c26480d99d38c75e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
[ -f /etc/banner ] && cat /etc/banner

export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export PS1='\u@\h:\w\$ '

alias more=less
[ -x /usr/bin/vim ] || alias vim=vi

arp() { cat /proc/net/arp; }
ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
reboot() { ifdown wan 2>&1 >/dev/null ; /sbin/reboot; }