Guest User

Untitled

a guest
Feb 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. sh: $'302211...': command not found
  2.  
  3. # /etc/profile
  4.  
  5. #Set our umask
  6. umask 022
  7.  
  8. # Set our default path
  9. PATH="/usr/local/sbin:/usr/local/bin:/usr/bin"
  10. export PATH
  11.  
  12. # Load profiles from /etc/profile.d
  13. if test -d /etc/profile.d/; then
  14. for profile in /etc/profile.d/*.sh; do
  15. test -r "$profile" && . "$profile"
  16. done
  17. unset profile
  18. fi
  19.  
  20. # Source global bash config
  21. if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
  22. . /etc/bash.bashrc
  23. fi
  24.  
  25. # Termcap is outdated, old, and crusty, kill it.
  26. unset TERMCAP
  27.  
  28. # Man is much better than us at figuring this out
  29. unset MANPATH
  30.  
  31. PS1='u@H w $ '
  32. alias ls='ls -F --color'
  33. alias grep='grep -i --color'
  34. [ -f ~/.shrc ] && . ~/.shrc
  35.  
  36. [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec xinit -- -dpi 111
  37.  
  38. xrdb -merge ~/.Xresources
  39.  
  40. VBoxClient-all
  41.  
  42. awesome &
  43.  
  44. exec xterm
  45.  
  46. *faceName: Inconsolata
  47. *faceSize: 10
  48. xterm*VT100*translations: #override <Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)
  49.  
  50. xterm*colorBDMode: true
  51. xterm*colorBD: #ff8000
  52. xterm*cursorColor: S_red
  53.  
  54. #
  55. # /etc/bash.bashrc
  56. #
  57.  
  58. # If not running interactively, don't do anything
  59. [[ $- != *i* ]] && return
  60.  
  61. PS1='[u@h W]$ '
  62. PS2='> '
  63. PS3='> '
  64. PS4='+ '
  65.  
  66. case ${TERM} in
  67. xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
  68. PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "33]0;%s@%s:%s07" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
  69.  
  70. ;;
  71. screen)
  72. PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "33_%s@%s:%s33\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
  73. ;;
  74. esac
  75.  
  76. [ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
  77.  
  78. setxkbmap -option "nbsp:none"
Add Comment
Please, Sign In to add comment