Fix formatting lost in merge commit

This commit is contained in:
nickofolas 2022-01-16 20:40:11 -06:00
parent 8b69fd7faa
commit 7a31b19c88

@ -7,7 +7,7 @@ export const TerminalHelpText: string[] = [
' alias [-g] [name="value"] Create or display Terminal aliases',
" analyze Get information about the current machine ",
" backdoor Install a backdoor on the current machine ",
"buy [-l/program] Purchase a program through the Dark Web",
" buy [-l/-a/program] Purchase a program through the Dark Web",
" cat [file] Display a .msg, .lit, or .txt file",
" cd [dir] Change to a new directory",
" check [script] [args...] Print a script's logs to Terminal",
@ -29,7 +29,7 @@ export const TerminalHelpText: string[] = [
" lscpu Displays the number of CPU cores on the machine",
" mem [script] [-t n] Displays the amount of RAM required to run the script",
" mv [src] [dest] Move/rename a text or script file",
"nano [file ...] | [glob] Text editor - Open up and edit one or more scripts or text files",
" nano [file ...] Text editor - Open up and edit one or more scripts or text files",
" ps Display all scripts that are currently running",
" rm [file] Delete a file from the server",
" run [name] [-t n] [--tail] [args...] Execute a program or script",
@ -40,15 +40,16 @@ export const TerminalHelpText: string[] = [
" tail [script] [args...] Displays dynamic logs for the specified script",
" top Displays all running scripts and their RAM usage",
" unalias [alias name] Deletes the specified alias",
"vim [file ...] | [glob] Text editor - Open up and edit one or more scripts or text files in vim mode",
" vim [file ...] Text editor - Open up and edit one or more scripts or text files in vim mode",
" weaken Reduce the security of the current machine",
" wget [url] [target file] Retrieves code/text from a web server",
" ",
];
const TemplatedHelpTexts: IMap<(command: string) => string[]> = {
scriptEditor: (command) => {
return [
`${command} [file ...] | [glob]`,
`Usage: ${command} [file ...] | [glob]`,
` `,
`Opens up the specified file(s) in the Script Editor. Only scripts (.js, .ns, .script) or text files (.txt) `,
`can be edited using the Script Editor. If a file does not exist a new one will be created`,
@ -63,6 +64,7 @@ const TemplatedHelpTexts: IMap<(command: string) => string[]> = {
` `,
` ${command} test.*`,
` ${command} /my-dir/*.js`,
` `
]
}
}