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