Skip to content

Instantly share code, notes, and snippets.

@SaeedDev94
Created October 3, 2024 18:26
Show Gist options
  • Save SaeedDev94/440fbe9022e0e56aba04cf95ec138f81 to your computer and use it in GitHub Desktop.
Save SaeedDev94/440fbe9022e0e56aba04cf95ec138f81 to your computer and use it in GitHub Desktop.
My debian root user .bashrc
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