Files
build/packages/bsp/common/etc/update-motd.d/00-clear
2024-09-08 17:43:14 +02:00

28 lines
668 B
Bash
Executable File

#!/bin/bash
#
# Copyright (c) Authors: https://www.armbian.com/authors
#
# This file is licensed under the terms of the GNU General Public
# License version 2. This program is licensed "as is" without any
# warranty of any kind, whether express or implied.
# DO NOT EDIT THIS FILE but add config options to /etc/default/armbian-motd
# any changes will be lost on board support package update
THIS_SCRIPT="clear"
MOTD_DISABLE=""
[[ -f /etc/default/armbian-motd ]] && . /etc/default/armbian-motd
for f in $MOTD_DISABLE; do
[[ $f == $THIS_SCRIPT ]] && exit 0
done
# Clear screen
if [ -f /bin/bash ]; then
export TERM="$(/bin/bash -c 'echo $TERM')"
fi
clear
exit 0