Clearing the terminal before displaying MOTD
- by user1417933
When I connect to my SSH server, it prompts me for the user name and password. After I have authenticated, it will display my MOTD, then show user prompt, like this:
Using username "root".
Authenticating with public key "everssh"
this is my motd
root@debian:~#
I want to edit some file so that the screen is cleared before the MOTD prints (so basically calling the clear command would do). I heard that the MOTD is displayed by using cat /etc/motd in a startup file, however after searching around I can't find where it is called from.
Does anyone know how I can find it?