mirror of
https://gitea.dmz.rs/Decentrala/workshops.git
synced 2026-07-11 22:12:34 +02:00
11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
include /etc/os-release
|
|
DAY != date +%d
|
|
MESSAGE != fortune -s
|
|
|
|
motd_$(DAY):
|
|
$(info Hello $(USER))
|
|
$(info Placing message:)
|
|
echo "Welcome to $(NAME)" > $@
|
|
echo $(MESSAGE) >> $@
|
|
|