motd 사용자의 세부 정보(사용자 및 실제 날짜)를 표시하려고 합니다.
지금까지 내가 취한 단계는 다음과 같습니다.
sudo nano /etc/update-motd.d/00-welcome #(script)
#!/bin/sh
echo "Welcome user: ${USER}. Today is $(date)" #(save the file)
sudo chmod +x /etc/update-motd.d/00-welcome
그러나 로그인에 성공한 후에는 motd가 나타나지 않습니다. 어떻게 해야 하나요?
답변1
다 읽어보셨나요 man update-motd
? 마지막에는 다음과 같이 말합니다.
Scripts should emit a blank line before output, and end with a newline
character. For instance:
따라서 스크립트를 다음과 같이 변경하십시오.
#!/bin/sh
echo
echo "Welcome user: ${USER}. Today is $(date)"