Skip to content

Instantly share code, notes, and snippets.

@CLCL
Created January 8, 2015 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CLCL/78e23c4c4e6d949f7206 to your computer and use it in GitHub Desktop.
Save CLCL/78e23c4c4e6d949f7206 to your computer and use it in GitHub Desktop.
Intel Edisonの組み込みLinux(yocto Project)の /etc/motd を生成する Intelが青でEdisonがシアンのつもり
#!/bin/sh
MOTD=/etc/motd
if [ ! -s $MOTD ] ; then
tee $MOTD << EOS
 d8b 888 ®
 y8p 888 888 ##### # #
 888 888 # #
 888 88888b. 888888 .d88b. 888 # # # #### #### #####
 888 888 "88b 888 d8P Y8b 888 ##### ##### # # # # # #
 888 888 888 888 88888888 888 # # # # #### # # # #
 888 888 888 Y88b. Y8b. 888 # # # # # # # # #
 Y88 888 888 "Y888 "Y8888 Y88 ##### ##### # #### #### # #

`uname -a`

EOS
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment