aboutsummaryrefslogblamecommitdiff
path: root/bin/motd
blob: ee60ad0351e6b366905d0e4a0224e3c47e906ce3 (plain) (tree)
1
2
3
4
5




                       
#!/bin/sh
# Show the system MOTD
motd=${MOTD:-/etc/motd}
[ -f "$motd" ] || exit
cat -- "$motd"