From 80e359ffd0a95096d41703e69235198f53a3b2f7 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 1 Aug 2024 10:04:43 +0200 Subject: [PATCH] update usage message --- usr/bin/archboot-copy-mountpoint.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr/bin/archboot-copy-mountpoint.sh b/usr/bin/archboot-copy-mountpoint.sh index 4cea5b706..e0a814c12 100755 --- a/usr/bin/archboot-copy-mountpoint.sh +++ b/usr/bin/archboot-copy-mountpoint.sh @@ -8,14 +8,14 @@ . /usr/lib/archboot/common.sh _usage() { - echo -e "\e[1mWelcome to \e[36mARCHBOOT\e[m\e[1m - COPY MOUNTPOINT:\e[m" - echo -e "\e[1m--------------------------------------\e[m" - echo "- Copy mountpoint recursivly from one mountpoint to an other one," - echo " using tar utility." + echo -e "\e[1m\e[36mArchboot\e[m\e[1m - Copy Mountpoint:\e[m" + echo -e "\e[1m---------------------------\e[m" + echo "- Copy mountpoint recursivly from to ," + echo -e " using the \e[1mtar\e[m utility." echo -e "- For system copying start with mounted \e[1m/\e[m and then invoke this script" echo -e " for each additional mountpoint eg. \e[1m/boot\e[m or \e[1m/home\e[m." echo "" - echo -e "usage: \e[1m${_BASENAME} \e[m" + echo -e "Usage: \e[1m${_BASENAME} \e[m" exit 0 } ##################################################