From: xf0r3m Date: Wed, 9 Aug 2023 15:25:14 +0000 (+0200) Subject: Zmiana w komunikatach pomocy - skrypt idle-cli (idle-clis i idle-clic) X-Git-Url: https://gitweb.morketsmerke.org/?a=commitdiff_plain;h=c49ea411383ae8850c3d6bb9eacf312b87261a6c;p=idle.git Zmiana w komunikatach pomocy - skrypt idle-cli (idle-clis i idle-clic) --- diff --git a/idle-clic b/idle-clic index 01588f6..ee33969 100644 --- a/idle-clic +++ b/idle-clic @@ -1,21 +1,26 @@ #!/bin/bash function help() { - echo 'idle-clic - IDLE CLI Client'; + echo 'idle-cli - Inter-Distribution Linux Environment CLI'; echo '@ 2023 morketsmerke.org'; echo; - echo 'IDLE commands:'; - echo ' list-distros - listing available distributions on this server'; - echo ' shell - running up the shell in given container'; - echo ' check-command - checking there is a given command in any container'; - echo ' apropos - return list of commands with short description'; - echo ' match to given keyword'; - echo ' pkgsearch - searching there is package installed or ready'; - echo ' to install match to given keywords'; + echo "Options:"; + echo " list-distros - listing available containers with Linux distros on this server"; + echo " shell - bring up the shell of given distro"; + echo " check-commmand - verify is given command exists in given distro"; + echo " apropos - finds commmands match to given keywords"; + echo " pkgsearch - check is given package is ready to install in given distro"; + echo; + echo " - pointing only one distro, but you can use also:" + echo " :"; + echo " --deb - .deb packages using distros (debian,kali,ubuntu)"; + echo " --rpm - .rpm packages using distros (fedora,rocky,opensuse)"; + echo " --other - other distros don't match to above (alpine,archlinux,gentoo,void)"; + echo " or <--all> - all 10 available distros (warning, output could be large, use some of pager)"; echo; echo 'Usage:'; echo ' $ idle-clic list-distros'; - echo ' $ idle-clic shell rocky9'; + echo ' $ idle-clic shell rocky'; echo ' $ idle-clic check-command netstat'; echo ' $ idle-clic apropos zip'; echo ' $ idle-clic pkgsearch "intel sound"'; @@ -37,3 +42,16 @@ else help; exit 1; fi + echo "Options:"; + echo " list-distros - listing available containers with Linux distros on this server"; + echo " shell - bring up the shell of given distro"; + echo " check-commmand - verify is given command exists in given distro"; + echo " apropos - finds commmands match to given keywords"; + echo " pkgsearch - check is given package is ready to install in given distro"; + echo; + echo " - pointing only one distro, but use also:" + echo " :"; + echo " --deb - .deb packages using distros (debian,kali,ubuntu)"; + echo " --rpm - .rpm packages using distros (fedora,rocky,opensuse)"; + echo " --other - other distros don't match to above (alpine,archlinux,gentoo,void)"; + echo " or <--all> - all 10 available distros (warning, output could be large, use some of pager)"; diff --git a/idle-clis b/idle-clis index 4b47514..2ae5c4d 100755 --- a/idle-clis +++ b/idle-clis @@ -71,7 +71,7 @@ function help() { echo " apropos - finds commmands match to given keywords"; echo " pkgsearch - check is given package is ready to install in given distro"; echo; - echo " - pointing only one distro, but use also:" + echo " - pointing only one distro, but you can use also:" echo " :"; echo " --deb - .deb packages using distros (debian,kali,ubuntu)"; echo " --rpm - .rpm packages using distros (fedora,rocky,opensuse)";