mirror of
https://github.com/flynx/bashctrl.git
synced 2025-10-28 10:20:11 +00:00
5 lines
119 B
Bash
5 lines
119 B
Bash
#!/bin/bash
|
|
if [[ $BASH_LOGIN == 1 ]] || [[ $BASH_PROFILE == 1 ]] ;then
|
|
[ -f ~/.greet ] && cat ~/.greet || fortune
|
|
fi
|