-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc386aa
commit cbeef81
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## MAFoElffen, <[email protected]>, 2021.08.19 | ||
## | ||
## Contributers: | ||
## Contributors: | ||
## sudodus <[email protected]>, 2021.08.25 | ||
## Doug S, 2021.08.22 | ||
## oldfred, 2021.08.20 | ||
|
@@ -545,7 +545,7 @@ function GetInternetStatus() | |
|
||
function GetPingStatus() | ||
{ | ||
# Takes arg as IP or URL. Returns psuedo boolean $return_status. Called twice (by Paster() and GetInternetStatus()). | ||
# Takes arg as IP or URL. Returns pseudo boolean $return_status. Called twice (by Paster() and GetInternetStatus()). | ||
ping -c 1 $1 &> /dev/null | ||
pingStatus=$? | ||
if [ $pingStatus == 0 ] | ||
|
@@ -623,7 +623,7 @@ function GetFQDN() | |
|
||
function GetDiskInfo() | ||
{ | ||
# Gets filesystem, disk, fstab and moutn information. Called once by Writer(). | ||
# Gets filesystem, disk, fstab and mount information. Called once by Writer(). | ||
GetStorageControllers | ||
echo -e "${setansi}---------- File system specs from 'df -h':$ransi" | ||
df -hT -x tmpfs -x devtmpfs | grep -v '/snap/' | ||
|
@@ -1046,7 +1046,7 @@ function MessageLess() | |
echo -e "Advance to a next page with the $blueback<SpaceBar>$resetvid key." | ||
echo -e "Navigate what has been displayed with the" | ||
echo -e "Left/Right/Up/Down Arrow, PageUp, PageDown, Home, or End keys." | ||
echo -e "If you are running within a grahical terminal session," | ||
echo -e "If you are running within a graphical terminal session," | ||
nl | ||
echo -e "you can also navigate with the mouse or touchpad." | ||
echo -e "Get more built-in help within 'less' with the <H> key." | ||
|
@@ -1244,7 +1244,7 @@ function CheckPasterProgs() | |
paste_prog=4; | ||
else | ||
paste_prog=0; | ||
echo -e "Many utilites were not found. Something is wrong."; | ||
echo -e "Many utilities were not found. Something is wrong."; | ||
debug "All progs used for paste where not found" 1 | ||
fi | ||
} | ||
|