aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-20 16:43:01 +0700
committerEverythingWindows <[email protected]>2022-11-20 16:43:01 +0700
commit2fa56446be7a049994786931e9145043362e8adb (patch)
treefd715e8afde59181985e3e2c654dfbfeeda27880 /ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb
parent5ae42df217ded307bb8e33611d2292ebdb523a18 (diff)
downloadshiftos-therevival-old-2fa56446be7a049994786931e9145043362e8adb.tar.gz
shiftos-therevival-old-2fa56446be7a049994786931e9145043362e8adb.tar.bz2
shiftos-therevival-old-2fa56446be7a049994786931e9145043362e8adb.zip
Guide command, MathQuiz App, ShiftOS About, and more
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb15
1 files changed, 15 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb
index 67d0d41..020ab7b 100644
--- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb
@@ -3,6 +3,7 @@
NewLine("ShiftOS Help Manual")
NewLine(Nothing)
NewLine("You can type 'help' to get all available commands and its corresponding action.")
+ NewLine("Type 'guide' to get the rough definitive guide on using ShiftOS")
If Strings.AvailableFeature(0) = 1 Then
NewLine("To get help on each command, you can type 'man [command]'")
NewLine(Nothing)
@@ -52,6 +53,7 @@
NewLine("DIR Displays subdirectories And files In a directory")
End If
NewLine("GUESS Runs 'Guess the Number' application")
+ NewLine("GUIDE Shows the definitive guide on using ShiftOS")
NewLine("HELP Shows all commands available and its corresponding action")
If Strings.AvailableFeature(20) = 1 Then
NewLine("HOSTNAME Sets the name of current hostname/computer name with a new one")
@@ -62,6 +64,9 @@
If Strings.AvailableFeature(0) = 1 Then
NewLine("MAN Shows a command, its corresponding action, and its example usage")
End If
+ If Strings.AvailableFeature(34) = 1 Then
+ NewLine("MATHQUIZ A simple puzzle game to answer simpla arithmatical questions")
+ End If
If Strings.AvailableFeature(16) = 1 Then
NewLine("MKDIR Creating a directory")
End If
@@ -98,6 +103,10 @@
ElseIf Strings.AvailableFeature(7) = 3 Then
If Strings.AvailableFeature(12) = 1 Then
NewLine("TIME Display the current time in the form of PM and AM format")
+ ElseIf Strings.AvailableFeature(12) = 3 Then
+ If Strings.AvailableFeature(23) = 1 Then
+ NewLine("TIME Display the current time in the form of HH:MM")
+ End If
End If
End If
End If
@@ -105,6 +114,12 @@
If Strings.AvailableFeature(20) = 1 Then
NewLine("USERNAME Sets the name of current user with a new one")
End If
+ If Strings.AvailableFeature(33) = 1 Then
+ NewLine("UNZIP Extract any files from a zip file")
+ End If
NewLine("VER Printing current version of ShiftOS TheRevival")
+ If Strings.AvailableFeature(32) = 1 Then
+ NewLine("ZIP Compress selected file/directory into a zip file")
+ End If
End Sub
End Module