dotconfig/dot_shrc

9 lines
106 B
Bash

#!/bin/sh
# .shrc
for f in \
"$HOME"/.profile \
"$HOME"/.alias \
; do
[ -f "$f" ] && . "$f"
done