Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- currUser=$(whoami)
- hiMess=""
- h=$(date +%H)
- if [ $h -ge 6 -a $h -lt 12 ]; then
- hiMess="Buna dimineata"
- elif [ $h -ge 12 -a $h -lt 18 ]; then
- hiMess="Buna ziua"
- elif [ $h -ge 18 -a $h -lt 22 ]; then
- hiMess="Buna seara"
- else
- hiMess="Noapte buna"
- fi
- echo $hiMess $currUser
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement