Created
October 3, 2024 18:26
-
-
Save SaeedDev94/440fbe9022e0e56aba04cf95ec138f81 to your computer and use it in GitHub Desktop.
My debian root user .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
color_prompt=yes | |
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
PROMPT_COMMAND='echo -ne "\033]0;root@${HOSTNAME}: ${PWD}\007"' | |
export LS_OPTIONS='--color=auto' | |
eval "$(dircolors)" | |
alias ls='ls $LS_OPTIONS' | |
alias ll='ls $LS_OPTIONS -l' | |
alias l='ls $LS_OPTIONS -lA' | |
alias grep='grep --color=auto' | |
alias fgrep='fgrep --color=auto' | |
alias egrep='egrep --color=auto' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment