Advertisement
Guest User

/etc/profile (nano)

a guest
Jan 6th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.86 KB | None | 0 0
  1. #!/bin/sh
  2. [ -f /etc/banner ] && cat /etc/banner
  3. [ -e /tmp/.failsafe ] && cat /etc/banner.failsafe
  4.  
  5. export PATH=/usr/sbin:/usr/bin:/sbin:/bin:/sd/usr/bin:/sd/usr/sbin
  6. export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
  7. export HOME=${HOME:-/root}
  8. export PS1='\[\e]0;\u@\h: \w\a\]\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  9.  
  10. [ -x /bin/more ] || alias more=less
  11. [ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
  12.  
  13. [ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
  14.  
  15. [ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
  16. [ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
  17.  
  18. [ -n "$FAILSAFE" ] || {
  19.         for FILE in /etc/profile.d/*.sh; do
  20.                 [ -e "$FILE" ] && . "$FILE"
  21.         done
  22.         unset FILE
  23. }
  24. export PATH=/usr/bin/pineapple:/bin:/sbin:/usr/bin:/usr/sbin:/sd/usr/bin:/sd/usr/sbin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement