Skip to content

Instantly share code, notes, and snippets.

@thesabbir
Created November 11, 2014 21:37
Show Gist options
  • Save thesabbir/a30e351c97528534cf9b to your computer and use it in GitHub Desktop.
Save thesabbir/a30e351c97528534cf9b to your computer and use it in GitHub Desktop.
OpenWRT ash profile file
#!/bin/sh
[ -f /etc/banner ] && cat /etc/banner
export PATH=/usr/bin:/usr/sbin:/bin:/sbin
export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
export HOME=${HOME:-/root}
export PS1='\u@\h:\w\$ '
[ -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
alias ..="cd .."
alias l="ls -la"
alias reash="source /etc/profile"
res() { /etc/init.d/$1 restart; }
[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment