mirror of
https://github.com/mnooner256/lfs-notes.git
synced 2026-01-14 00:35:07 +00:00
16 lines
277 B
Bash
16 lines
277 B
Bash
#!/bin/bash
|
|
|
|
#Include the default bashrc file
|
|
. /etc/skel/.bashrc
|
|
|
|
#Set the prompt
|
|
export PS1="\\[\\033[0;31m\\]\\u:\\w#\\[\\033[0m\\] "
|
|
|
|
umask 022
|
|
|
|
#Make file removal interactive by default
|
|
alias rm="rm -i"
|
|
|
|
#Add needed paths
|
|
export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH
|