Merge pull request #2674 from nickofolas/fix/help-format-fix-merge

Fix formatting lost in merge commit
This commit is contained in:
hydroflame 2022-01-17 15:52:28 -05:00 committed by GitHub
commit b58a2c3cd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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`,
` `
]
}
}