bashctrl/plugins/fortune
Alex A. Naanou ce22eb7339 initial commit...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2022-03-23 16:04:39 +03:00

5 lines
119 B
Bash

#!/bin/bash
if [[ $BASH_LOGIN == 1 ]] || [[ $BASH_PROFILE == 1 ]] ;then
[ -f ~/.greet ] && cat ~/.greet || fortune
fi