6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f ~/bin/say_in_english ]; then
|
|
. ~/bin/say_in_english "User $LOGNAME is connecting on machine `hostname`" &
|
|
fi
|