Openwrt/obsolete-buildroot/sources/openwrt/root/etc/profile

10 lines
186 B
Plaintext
Raw Normal View History

2004-08-12 05:47:00 +00:00
#!/bin/sh
[ -f /etc/banner ] && cat /etc/banner
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export PS1='\u@\h:\w\$ '
alias less=more
alias vim=vi
2004-12-24 02:43:03 +00:00
ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }