AndrzejL

AndrzejL Root bashrc

Aug 15th, 2012
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. [root@icsserver andrzejl]# cat /root/.bashrc
  2. # .bashrc
  3. PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:/usr/lib/kde4/libexec
  4. ENV=$HOME/.bashrc
  5. USERNAME="root"
  6. export USERNAME ENV PATH
  7. export $(dbus-launch)
  8. # User specific aliases and functions
  9. alias ssh='ssh -Y'
  10. alias procesy='ps -A -o pid,stat,pmem,pcpu,start,etime,comm,user --sort=-pcpu'
  11. alias konq='konqueror --profile filemanagement&'
  12. # Source global definitions
  13. if [ -f /etc/bashrc ]; then
  14. . /etc/bashrc
  15. fi
  16. # fif=Find in File (maik3531)
  17. # e.g. to search for the word 'pencil' in all documents of a given
  18. # directory open a konsole, cd to the directory, and run: fif "pencil"
  19. fif() {
  20. find . -type f -print | xargs grep --color=auto "$1" 2> /dev/null
  21. }
  22. # This line was appended by KDE
  23. # Make sure our customised gtkrc file is loaded.
  24. export GTK2_RC_FILES=$HOME/.gtkrc-2.0
  25. export PS1='\[\033[01;31m\][\u@\h \W]\$\[\033[00m\] '
  26. export DE=kde
  27. [root@icsserver andrzejl]#
Advertisement
Add Comment
Please, Sign In to add comment