Skip to content

Commit 28c676b

Browse files
Fix typos found by codespell
1 parent fe0c565 commit 28c676b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Ubuntu Forums "system-info" script queries the users computer and prepares a
55
- Creates the file `system-info.txt` at the base of the user's home directory.
66
- Masks all sensitive info, like IP addresses, MAC addresses, Full FQDN and Serial numbers, automatically in a meaningful way.
77
- The script displays the report results within the 'less' utility to review the results, one screen at a time. To navigate from there, press the space bar, left, right, up, down, page up or page down keys to navigate. If in a graphical terminal session, you can also use mouse navigation. Press the "q" key to exit "less" and continue. It will print the final report and offer to upload to pastebin site.
8-
- Offers to post the results to the Ubuntu `pastebinit` provider if that program is installed, and a sufficiently reliable internet connection is available. This is the easiest way to share the sanitized results with the Ubuntu Community for support. After succssful upload to the pastebin, it will both display and log the URL of the uploaded report (`~/system-info-link.log`), for you to copy and paste in your post on the Ubuntu Forums.
8+
- Offers to post the results to the Ubuntu `pastebinit` provider if that program is installed, and a sufficiently reliable internet connection is available. This is the easiest way to share the sanitized results with the Ubuntu Community for support. After successful upload to the pastebin, it will both display and log the URL of the uploaded report (`~/system-info-link.log`), for you to copy and paste in your post on the Ubuntu Forums.
99
- Future versions may have an option to create the archive `system-info.tar.gz` if the report exceeds 19.5 kB in size.
1010

1111

@@ -24,7 +24,7 @@ This will download the script, make it executable, and run it, all in a row.
2424
Or, from a GUI Desktop, this way:
2525

2626
1. [Download][1] the script
27-
2. In Nautilus or other file broswer, From File Properties, Permissions, Make it executable.
27+
2. In Nautilus or other file browser, From File Properties, Permissions, Make it executable.
2828
3. Run it from your file browser or a Run dialog from kdialog
2929

3030
[1]: https://github.com/UbuntuForums/system-info/raw/main/system-info

system-info

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## MAFoElffen, <[email protected]>, 2021.08.19
44
##
5-
## Contributers:
5+
## Contributors:
66
## sudodus <[email protected]>, 2021.08.25
77
## Doug S, 2021.08.22
88
## oldfred, 2021.08.20
@@ -534,7 +534,7 @@ function GetInternetStatus()
534534

535535
function GetPingStatus()
536536
{
537-
# Takes arg as IP or URL. Returns psuedo boolean $return_status. Called twice (by Paster() and GetInternetStatus()).
537+
# Takes arg as IP or URL. Returns pseudo boolean $return_status. Called twice (by Paster() and GetInternetStatus()).
538538
ping -c 1 $1 &> /dev/null
539539
pingStatus=$?
540540
if [ $pingStatus == 0 ]
@@ -612,7 +612,7 @@ function GetFQDN()
612612

613613
function GetDiskInfo()
614614
{
615-
# Gets filesystem, disk, fstab and moutn information. Called once by Writer().
615+
# Gets filesystem, disk, fstab and mount information. Called once by Writer().
616616
echo -e "${setansi}---------- File system specs from 'df -h':$ransi"
617617
df -hT -x tmpfs -x devtmpfs | grep -v '/snap/'
618618
nl
@@ -924,7 +924,7 @@ function MessageLess()
924924
echo -e "Advance to a next page with the $blueback<SpaceBar>$resetvid key."
925925
echo -e "Navigate what has been displayed with the"
926926
echo -e "Left/Right/Up/Down Arrow, PageUp, PageDown, Home, or End keys."
927-
echo -e "If you are running within a grahical terminal session,"
927+
echo -e "If you are running within a graphical terminal session,"
928928
nl
929929
echo -e "you can also navigate with the mouse or touchpad."
930930
echo -e "Get more built-in help within 'less' with the <H> key."
@@ -1050,7 +1050,7 @@ function CheckPasterProgs()
10501050
paste_prog=4;
10511051
else
10521052
paste_prog=0;
1053-
echo -e "Many utilites were not found. Something is wrong.";
1053+
echo -e "Many utilities were not found. Something is wrong.";
10541054
debug "All progs used for paste where not found" 1
10551055
fi
10561056
}
@@ -1251,5 +1251,5 @@ exit
12511251
#
12521252
# Recheck all messages and prompts for spelling errors
12531253
#
1254-
# Add comments as script doucmentation:
1254+
# Add comments as script documentation:
12551255
# - Document logic flow

0 commit comments

Comments
 (0)