5 lines
61 B
Bash
5 lines
61 B
Bash
#!/bin/bash
|
|
if [ -r "$HOME/.shrc" ]
|
|
then
|
|
. "$HOME/.shrc"
|
|
fi
|