From d6db44534f15fabb00c81635e54c1e52eb84ed88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20H=C3=A4hlen?= Date: Tue, 17 Jan 2023 15:38:28 +0100 Subject: [PATCH] Found out help is missing some line-breaks --- dc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dc b/dc index cf94fdc..da24f49 100755 --- a/dc +++ b/dc @@ -77,26 +77,26 @@ function show_usage (){ printf "Usage: %s [command] [stacks] \n" "$0" printf " \n" printf "Commands: \n" - printf "============================= Stack Commands =============================" + printf "============================= Stack Commands ============================= \n" printf " %bup%b Bring up all stacks, a stack, or stacks \n" "${RED}" "${NC}" printf " %bdown%b Bring down all stacks, a stack or stack(s) \n" "${RED}" "${NC}" printf " %brestart-stack-hard%b Restarts all stacks, a stack or stack(s) \n" "${RED}" "${NC}" printf " %brestart-stack-soft%b Restarts all stacks, a stack or stack(s) \n" "${RED}" "${NC}" printf " %blogs-stack%b Shows logs for a stack or stacks \n" "${RED}" "${NC}" - printf "=========================== Container Commands ===========================" + printf "=========================== Container Commands =========================== \n" printf " %bstart%b Starts one or more services \n" "${RED}" "${NC}" printf " %bstop%b Stops one or more services \n" "${RED}" "${NC}" printf " %brestart%b Restarts one or more services \n" "${RED}" "${NC}" printf " %bpull%b Pulls an image of a service \n" "${RED}" "${NC}" printf " %blogs%b Shows logs for a service or services \n" "${RED}" "${NC}" - printf "============================= System Commands =============================" + printf "============================= System Commands ============================= \n" printf " %bnetwork%b Create the MacVLAN network, needs sudo \n" "${RED}" "${NC}" printf " %bprune%b Prunes images and containers (basic) or the system \n" "${RED}" "${NC}" - printf "======================= Install, Update and Version =======================" + printf "======================= Install, Update and Version ======================= \n" printf " %binstall%b Install dc for the user, needs sudo \n" "${RED}" "${NC}" printf " %bupdate%b Updates dc to the latest version \n" "${RED}" "${NC}" printf " %bversion%b Shows the version and checks the latest version \n" "${RED}" "${NC}" - printf "============================== Usage Commands ==============================" + printf "============================== Usage Commands ==============================\n" printf " %blist%b List stacks and services in the stacks \n" "${RED}" "${NC}" printf " %bhelp%b Print help \n" "${RED}" "${NC}"