UI: Update incorrect ps command shown in help (#2484)

This commit is contained in:
Groot-0909
2026-02-08 23:07:04 +05:30
committed by GitHub
parent 8633e94899
commit b99e522d1c

View File

@@ -399,7 +399,20 @@ export const HelpTexts: Record<string, string[]> = {
" ",
],
nano: TemplatedHelpTexts.scriptEditor("nano"),
ps: ["Usage: ps", " ", "Prints all scripts that are running on the current server", " "],
ps: [
"Usage: ps [OPTION]...",
" ",
"Print information about scripts currently running on the server.",
" ",
"-g, --grep <pattern> Filter running scripts by filename using a search pattern.",
" ",
"If no options are provided, ps lists all running scripts.",
" ",
"Examples:",
" ps",
" ps --grep early-hack-template.js",
" ps -g n00dles.js",
],
rm: [
"Usage: rm [OPTION]... [FILE]...",
" ",