alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

bashrc (180B)


      1 # /etc/bashrc
      2 
      3 alias ls='ls --color=auto'
      4 alias grep='grep --color=auto'
      5 
      6 if [ -d /etc/bashrc.d/ ]; then
      7 	for f in /etc/bashrc.d/*.sh; do
      8 		[ -r "$f" ] && . "$f"
      9 	done
     10 	unset f
     11 fi