From 2fa56446be7a049994786931e9145043362e8adb Mon Sep 17 00:00:00 2001 From: EverythingWindows Date: Sun, 20 Nov 2022 16:43:01 +0700 Subject: Guide command, MathQuiz App, ShiftOS About, and more --- .../TerminalApplications/Internal/Com_Manual.vb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal/Com_Manual.vb') diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Manual.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Manual.vb index 3ba13f5..a4bc2cc 100644 --- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Manual.vb +++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Manual.vb @@ -149,10 +149,22 @@ Console.TextBox1.Text = Console.TextBox1.Text & TempUsage & Environment.NewLine & Environment.NewLine & My.Resources.man_username & Environment.NewLine NormalCommand() End If + Case "unzip" + If Strings.AvailableFeature(33) = "1" Then + TempUsage = TempUsage & "unzip [FILENAME.ZIP]" + Console.TextBox1.Text = Console.TextBox1.Text & TempUsage & Environment.NewLine & Environment.NewLine & My.Resources.man_unzip & Environment.NewLine + NormalCommand() + End If Case "ver" TempUsage = TempUsage & "ver" Console.TextBox1.Text = Console.TextBox1.Text & TempUsage & Environment.NewLine & Environment.NewLine & My.Resources.man_ver & Environment.NewLine NormalCommand() + Case "zip" + If Strings.AvailableFeature(32) = "1" Then + TempUsage = TempUsage & "zip [CONTENT TYPE] '[FILENAME.ZIP]' '[CONTENT NAME]'" + Console.TextBox1.Text = Console.TextBox1.Text & TempUsage & Environment.NewLine & Environment.NewLine & My.Resources.man_zip & Environment.NewLine + NormalCommand() + End If Case Else NewLine("MAN : Invalid command") End Select -- cgit v1.2.3