14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
alias ls='ls --color=auto'
|
||
|
alias grep='grep --color=auto'
|
||
|
|
||
|
# Helpful tool: https://bash-prompt-generator.org
|
||
|
# On github: https://github.com/Scriptim/bash-prompt-generator
|
||
|
PS1='[\u@\h \w]\$ '
|