typescript-virtual-container 1.4.7 → 1.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. package/README.md +0 -1
  2. package/benchmark-results.txt +21 -21
  3. package/builds/self-standalone.js +979 -167
  4. package/builds/self-standalone.js.map +4 -4
  5. package/builds/standalone-wo-sftp.js +982 -172
  6. package/builds/standalone-wo-sftp.js.map +4 -4
  7. package/builds/standalone.cjs +990 -179
  8. package/builds/standalone.cjs.map +4 -4
  9. package/dist/SSHMimic/index.d.ts.map +1 -1
  10. package/dist/SSHMimic/index.js +2 -0
  11. package/dist/SSHMimic/index.js.map +1 -1
  12. package/dist/VirtualFileSystem/binaryPack.d.ts.map +1 -1
  13. package/dist/VirtualFileSystem/binaryPack.js +21 -9
  14. package/dist/VirtualFileSystem/binaryPack.js.map +1 -1
  15. package/dist/VirtualFileSystem/index.d.ts +25 -0
  16. package/dist/VirtualFileSystem/index.d.ts.map +1 -1
  17. package/dist/VirtualFileSystem/index.js +152 -47
  18. package/dist/VirtualFileSystem/index.js.map +1 -1
  19. package/dist/VirtualFileSystem/internalTypes.d.ts +19 -4
  20. package/dist/VirtualFileSystem/internalTypes.d.ts.map +1 -1
  21. package/dist/VirtualFileSystem/path.js +1 -1
  22. package/dist/VirtualFileSystem/path.js.map +1 -1
  23. package/dist/VirtualShell/idleManager.d.ts +65 -0
  24. package/dist/VirtualShell/idleManager.d.ts.map +1 -0
  25. package/dist/VirtualShell/idleManager.js +106 -0
  26. package/dist/VirtualShell/idleManager.js.map +1 -0
  27. package/dist/VirtualShell/index.d.ts +28 -0
  28. package/dist/VirtualShell/index.d.ts.map +1 -1
  29. package/dist/VirtualShell/index.js +48 -0
  30. package/dist/VirtualShell/index.js.map +1 -1
  31. package/dist/commands/man.d.ts.map +1 -1
  32. package/dist/commands/man.js +5 -28
  33. package/dist/commands/man.js.map +1 -1
  34. package/dist/commands/manuals-bundle.d.ts +11 -0
  35. package/dist/commands/manuals-bundle.d.ts.map +1 -0
  36. package/dist/commands/manuals-bundle.js +898 -0
  37. package/dist/commands/manuals-bundle.js.map +1 -0
  38. package/dist/index.d.ts +2 -0
  39. package/dist/index.d.ts.map +1 -1
  40. package/dist/index.js +1 -0
  41. package/dist/index.js.map +1 -1
  42. package/dist/modules/linuxRootfs.d.ts +8 -1
  43. package/dist/modules/linuxRootfs.d.ts.map +1 -1
  44. package/dist/modules/linuxRootfs.js +47 -14
  45. package/dist/modules/linuxRootfs.js.map +1 -1
  46. package/dist/self-standalone.js +15 -0
  47. package/dist/self-standalone.js.map +1 -1
  48. package/dist/standalone.js +22 -0
  49. package/dist/standalone.js.map +1 -1
  50. package/docs/assets/hierarchy.js +1 -1
  51. package/docs/assets/navigation.js +1 -1
  52. package/docs/assets/search.js +1 -1
  53. package/docs/classes/HoneyPot.html +8 -8
  54. package/docs/classes/IdleManager.html +159 -0
  55. package/docs/classes/SshClient.html +18 -18
  56. package/docs/classes/VirtualFileSystem.html +57 -32
  57. package/docs/classes/VirtualPackageManager.html +12 -12
  58. package/docs/classes/VirtualSftpServer.html +3 -3
  59. package/docs/classes/VirtualShell.html +40 -25
  60. package/docs/classes/VirtualSshServer.html +5 -5
  61. package/docs/classes/VirtualUserManager.html +26 -26
  62. package/docs/functions/assertDiff.html +1 -1
  63. package/docs/functions/diffSnapshots.html +1 -1
  64. package/docs/functions/formatDiff.html +1 -1
  65. package/docs/functions/getArg.html +1 -1
  66. package/docs/functions/getFlag.html +1 -1
  67. package/docs/functions/ifFlag.html +1 -1
  68. package/docs/hierarchy.html +1 -1
  69. package/docs/index.html +1 -2
  70. package/docs/interfaces/AuditLogEntry.html +2 -2
  71. package/docs/interfaces/CommandContext.html +11 -11
  72. package/docs/interfaces/CommandResult.html +12 -12
  73. package/docs/interfaces/ExecStream.html +5 -5
  74. package/docs/interfaces/HoneyPotStats.html +2 -2
  75. package/docs/interfaces/IdleManagerOptions.html +7 -0
  76. package/docs/interfaces/InstalledPackage.html +10 -10
  77. package/docs/interfaces/NanoEditorSession.html +4 -4
  78. package/docs/interfaces/PackageDefinition.html +13 -13
  79. package/docs/interfaces/PackageFile.html +4 -4
  80. package/docs/interfaces/RemoveOptions.html +2 -2
  81. package/docs/interfaces/ShellEnv.html +3 -3
  82. package/docs/interfaces/ShellModule.html +7 -7
  83. package/docs/interfaces/ShellProperties.html +4 -4
  84. package/docs/interfaces/ShellStream.html +6 -6
  85. package/docs/interfaces/SudoChallenge.html +8 -8
  86. package/docs/interfaces/VfsBaseNode.html +6 -6
  87. package/docs/interfaces/VfsDiff.html +5 -5
  88. package/docs/interfaces/VfsDiffEntry.html +3 -3
  89. package/docs/interfaces/VfsDiffModified.html +5 -5
  90. package/docs/interfaces/VfsDirectoryNode.html +7 -7
  91. package/docs/interfaces/VfsFileNode.html +8 -8
  92. package/docs/interfaces/VfsOptions.html +18 -4
  93. package/docs/interfaces/VfsSnapshot.html +2 -2
  94. package/docs/interfaces/VfsSnapshotBaseNode.html +3 -3
  95. package/docs/interfaces/VfsSnapshotDirectoryNode.html +4 -4
  96. package/docs/interfaces/VfsSnapshotFileNode.html +5 -5
  97. package/docs/interfaces/WriteFileOptions.html +3 -3
  98. package/docs/modules.html +1 -1
  99. package/docs/types/CommandMode.html +1 -1
  100. package/docs/types/CommandOutcome.html +1 -1
  101. package/docs/types/IdleState.html +1 -0
  102. package/docs/types/VfsNodeStats.html +1 -1
  103. package/docs/types/VfsNodeType.html +1 -1
  104. package/docs/types/VfsPersistenceMode.html +1 -1
  105. package/docs/types/VfsSnapshotNode.html +1 -1
  106. package/package.json +5 -4
  107. package/scripts/generate-manuals-bundle.mjs +49 -0
  108. package/src/SSHMimic/index.ts +2 -0
  109. package/src/VirtualFileSystem/binaryPack.ts +21 -9
  110. package/src/VirtualFileSystem/index.ts +151 -53
  111. package/src/VirtualFileSystem/internalTypes.ts +20 -4
  112. package/src/VirtualFileSystem/path.ts +1 -1
  113. package/src/VirtualShell/idleManager.ts +133 -0
  114. package/src/VirtualShell/index.ts +48 -0
  115. package/src/commands/man.ts +5 -37
  116. package/src/commands/manuals-bundle.ts +898 -0
  117. package/src/index.ts +2 -0
  118. package/src/modules/linuxRootfs.ts +58 -14
  119. package/src/self-standalone.ts +13 -0
  120. package/src/standalone.ts +23 -0
@@ -0,0 +1,898 @@
1
+ /**
2
+ * Auto-generated by scripts/generate-manuals-bundle.mjs
3
+ * DO NOT EDIT — run `node scripts/generate-manuals-bundle.mjs` to regenerate.
4
+ *
5
+ * Inlines all src/commands/manuals/*.txt files so that standalone and web
6
+ * builds have access to man pages without needing filesystem access.
7
+ */
8
+ /** biome-ignore-all lint/style/useNamingConvention: generated keys match command names (e.g. lsb_release) */
9
+ /** Static map of command name → man page content. */
10
+ export const MANUALS = {
11
+ "adduser": `ADDUSER(8) User Commands ADDUSER(8)
12
+
13
+ NAME
14
+ adduser - add a user to the system
15
+
16
+ SYNOPSIS
17
+ adduser USERNAME
18
+
19
+ DESCRIPTION
20
+ Create a new user account with a home directory.
21
+ In this environment, prompts for a password interactively.`,
22
+ "apt-cache": `APT-CACHE(8) APT APT-CACHE(8)
23
+
24
+ NAME
25
+ apt-cache - query APT package cache
26
+
27
+ SYNOPSIS
28
+ apt-cache command [args]
29
+
30
+ COMMANDS
31
+ search term search package names/descriptions
32
+ show pkg show package metadata
33
+ policy pkg show package policy and candidate versions`,
34
+ "apt": `APT(8) APT APT(8)
35
+
36
+ NAME
37
+ apt - command-line interface
38
+
39
+ SYNOPSIS
40
+ apt [options] command
41
+
42
+ DESCRIPTION
43
+ apt provides a high-level commandline interface for the package
44
+ management system.
45
+
46
+ COMMANDS
47
+ install pkg... Install packages
48
+ remove pkg... Remove packages
49
+ update Download package information
50
+ upgrade Upgrade installed packages
51
+ search term Search in package descriptions
52
+ show pkg Show package information
53
+ list List packages`,
54
+ "awk": `AWK(1) User Commands AWK(1)
55
+
56
+ NAME
57
+ awk - pattern scanning and processing language
58
+
59
+ SYNOPSIS
60
+ awk [OPTION]... 'PROGRAM' [FILE]...
61
+
62
+ DESCRIPTION
63
+ awk scans each input line, applies PROGRAM rules, and prints results.
64
+
65
+ OPTIONS
66
+ -F fs use fs as input field separator`,
67
+ "cat": `CAT(1) User Commands CAT(1)
68
+
69
+ NAME
70
+ cat - concatenate files and print on the standard output
71
+
72
+ SYNOPSIS
73
+ cat [OPTION]... [FILE]...
74
+
75
+ DESCRIPTION
76
+ Concatenate FILE(s) to standard output.
77
+
78
+ OPTIONS
79
+ -n, --number number all output lines
80
+ -b, --number-nonblank number nonempty output lines`,
81
+ "cd": `CD(1) Shell Builtins CD(1)
82
+
83
+ NAME
84
+ cd - change the shell working directory
85
+
86
+ SYNOPSIS
87
+ cd [DIRECTORY]
88
+
89
+ DESCRIPTION
90
+ Change the current working directory.
91
+ Without DIRECTORY, changes to $HOME.
92
+
93
+ EXAMPLES
94
+ cd /etc
95
+ cd ..
96
+ cd ~`,
97
+ "chmod": `CHMOD(1) User Commands CHMOD(1)
98
+
99
+ NAME
100
+ chmod - change file mode bits
101
+
102
+ SYNOPSIS
103
+ chmod [OPTION]... MODE[,MODE]... FILE...
104
+ chmod [OPTION]... OCTAL-MODE FILE...
105
+
106
+ DESCRIPTION
107
+ Change the file mode bits of each given file according to MODE.
108
+
109
+ EXAMPLES
110
+ chmod 755 script.sh rwxr-xr-x
111
+ chmod 644 file.txt rw-r--r--
112
+ chmod +x script.sh add execute permission`,
113
+ "clear": `CLEAR(1) User Commands CLEAR(1)
114
+
115
+ NAME
116
+ clear - clear the terminal screen
117
+
118
+ SYNOPSIS
119
+ clear
120
+
121
+ DESCRIPTION
122
+ Clear the display and move cursor to top-left.`,
123
+ "cp": `CP(1) User Commands CP(1)
124
+
125
+ NAME
126
+ cp - copy files and directories
127
+
128
+ SYNOPSIS
129
+ cp [OPTION]... SOURCE... DEST
130
+
131
+ OPTIONS
132
+ -r copy directories recursively`,
133
+ "curl": `CURL(1) User Commands CURL(1)
134
+
135
+ NAME
136
+ curl - transfer a URL
137
+
138
+ SYNOPSIS
139
+ curl [options / URLs]
140
+
141
+ DESCRIPTION
142
+ curl is a tool for transferring data with URL syntax.
143
+
144
+ OPTIONS
145
+ -o, --output <file> Write output to <file>
146
+ -X, --request <method> Specify request method
147
+ -d, --data <data> HTTP POST data
148
+ -H, --header <header> Pass custom header
149
+ -s, --silent Silent mode
150
+ -I, --head Show document info only
151
+ -L, --location Follow redirects
152
+ -v, --verbose Make the operation more talkative`,
153
+ "date": `DATE(1) User Commands DATE(1)
154
+
155
+ NAME
156
+ date - print or set the system date and time
157
+
158
+ SYNOPSIS
159
+ date [+FORMAT]
160
+
161
+ DESCRIPTION
162
+ Display current date/time, optionally formatted.
163
+
164
+ EXAMPLES
165
+ date
166
+ date +%Y-%m-%d`,
167
+ "declare": `DECLARE(1) Shell Builtins DECLARE(1)
168
+
169
+ NAME
170
+ declare - set variable values and attributes
171
+
172
+ SYNOPSIS
173
+ declare [OPTION]... [NAME[=VALUE]...]
174
+
175
+ OPTIONS
176
+ -i variable has integer attribute
177
+ -r make NAMEs readonly
178
+ -x export NAMEs to environment`,
179
+ "deluser": `DELUSER(8) User Commands DELUSER(8)
180
+
181
+ NAME
182
+ deluser - remove a user account
183
+
184
+ SYNOPSIS
185
+ deluser [OPTION] USERNAME
186
+
187
+ OPTIONS
188
+ -f, --force remove without interactive confirmation`,
189
+ "df": `DF(1) User Commands DF(1)
190
+
191
+ NAME
192
+ df - report file system disk space usage
193
+
194
+ SYNOPSIS
195
+ df [OPTION]... [FILE]...
196
+
197
+ OPTIONS
198
+ -h print sizes in human readable format`,
199
+ "dpkg-query": `DPKG-QUERY(1) User Commands DPKG-QUERY(1)
200
+
201
+ NAME
202
+ dpkg-query - tool to query the dpkg database
203
+
204
+ SYNOPSIS
205
+ dpkg-query [OPTION]... [ACTION]
206
+
207
+ OPTIONS
208
+ -W list installed packages (show format)
209
+ -l list packages`,
210
+ "dpkg": `DPKG(1) User Commands DPKG(1)
211
+
212
+ NAME
213
+ dpkg - package manager for Debian-like systems
214
+
215
+ SYNOPSIS
216
+ dpkg [OPTION]... ACTION
217
+
218
+ OPTIONS
219
+ -l list installed packages
220
+ -s show package status
221
+ -L list files in package
222
+ -r remove package
223
+ -P purge package`,
224
+ "du": `DU(1) User Commands DU(1)
225
+
226
+ NAME
227
+ du - estimate file space usage
228
+
229
+ SYNOPSIS
230
+ du [OPTION]... [FILE]...
231
+
232
+ OPTIONS
233
+ -h print sizes in human readable format
234
+ -s display only a total for each argument`,
235
+ "echo": `ECHO(1) User Commands ECHO(1)
236
+
237
+ NAME
238
+ echo - display a line of text
239
+
240
+ SYNOPSIS
241
+ echo [OPTION]... [STRING]...
242
+
243
+ OPTIONS
244
+ -n do not output the trailing newline
245
+ -e enable interpretation of backslash escapes`,
246
+ "false": `FALSE(1) User Commands FALSE(1)
247
+
248
+ NAME
249
+ false - do nothing, unsuccessfully
250
+
251
+ SYNOPSIS
252
+ false
253
+
254
+ DESCRIPTION
255
+ Exit with a status code indicating failure (1).`,
256
+ "find": `FIND(1) User Commands FIND(1)
257
+
258
+ NAME
259
+ find - search for files in a directory hierarchy
260
+
261
+ SYNOPSIS
262
+ find [PATH] [EXPRESSION]
263
+
264
+ OPTIONS
265
+ -name PATTERN base name matches shell PATTERN
266
+ -type TYPE file type, e.g. f for file, d for directory`,
267
+ "free": `FREE(1) User Commands FREE(1)
268
+
269
+ NAME
270
+ free - display amount of free and used memory in the system
271
+
272
+ SYNOPSIS
273
+ free [OPTION]...
274
+
275
+ OPTIONS
276
+ -h show all output fields automatically scaled
277
+ -m show output in mebibytes
278
+ -g show output in gibibytes`,
279
+ "grep": `GREP(1) User Commands GREP(1)
280
+
281
+ NAME
282
+ grep, egrep, fgrep - print lines that match patterns
283
+
284
+ SYNOPSIS
285
+ grep [OPTION]... PATTERNS [FILE]...
286
+
287
+ OPTIONS
288
+ -i, --ignore-case ignore case distinctions in patterns and data
289
+ -v, --invert-match select non-matching lines
290
+ -n, --line-number print line number with output lines
291
+ -r, --recursive read all files under each directory, recursively`,
292
+ "groups": `GROUPS(1) User Commands GROUPS(1)
293
+
294
+ NAME
295
+ groups - print the groups a user is in
296
+
297
+ SYNOPSIS
298
+ groups [USER]
299
+
300
+ DESCRIPTION
301
+ Print group memberships for USER or current user if omitted.`,
302
+ "gzip": `GZIP(1) User Commands GZIP(1)
303
+
304
+ NAME
305
+ gzip, gunzip - compress or expand files
306
+
307
+ SYNOPSIS
308
+ gzip FILE...
309
+ gunzip FILE...
310
+
311
+ DESCRIPTION
312
+ Compress or decompress files in place.`,
313
+ "head": `HEAD(1) User Commands HEAD(1)
314
+
315
+ NAME
316
+ head - output the first part of files
317
+
318
+ SYNOPSIS
319
+ head [OPTION]... [FILE]...
320
+
321
+ OPTIONS
322
+ -n, --lines=[-]NUM print the first NUM lines`,
323
+ "help": `HELP(1) Shell Builtins HELP(1)
324
+
325
+ NAME
326
+ help - display information about builtin commands
327
+
328
+ SYNOPSIS
329
+ help [COMMAND]
330
+
331
+ DESCRIPTION
332
+ With no arguments, list available commands.
333
+ With COMMAND, show usage details for that command.`,
334
+ "history": `HISTORY(1) Shell Builtins HISTORY(1)
335
+
336
+ NAME
337
+ history - command history list
338
+
339
+ SYNOPSIS
340
+ history [N]
341
+
342
+ DESCRIPTION
343
+ Print recent command history entries.
344
+ If N is provided, print only the last N entries.`,
345
+ "hostname": `HOSTNAME(1) User Commands HOSTNAME(1)
346
+
347
+ NAME
348
+ hostname - show or set the system host name
349
+
350
+ SYNOPSIS
351
+ hostname
352
+
353
+ DESCRIPTION
354
+ Print the current host name.`,
355
+ "id": `ID(1) User Commands ID(1)
356
+
357
+ NAME
358
+ id - print real and effective user and group IDs
359
+
360
+ SYNOPSIS
361
+ id [USER]
362
+
363
+ DESCRIPTION
364
+ Print user identity information including uid, gid, and groups.`,
365
+ "kill": `KILL(1) User Commands KILL(1)
366
+
367
+ NAME
368
+ kill - send signals to processes
369
+
370
+ SYNOPSIS
371
+ kill [-SIGNAL] PID...
372
+
373
+ DESCRIPTION
374
+ Send a signal to one or more process IDs.
375
+
376
+ NOTES
377
+ This environment provides a mock process model.`,
378
+ "ls": `LS(1) User Commands LS(1)
379
+
380
+ NAME
381
+ ls - list directory contents
382
+
383
+ SYNOPSIS
384
+ ls [OPTION]... [FILE]...
385
+
386
+ DESCRIPTION
387
+ List information about the FILEs (the current directory by default).
388
+
389
+ OPTIONS
390
+ -l use a long listing format
391
+ -a do not ignore entries starting with .
392
+ -h with -l, print human readable sizes
393
+ -r reverse order while sorting
394
+ -t sort by modification time
395
+
396
+ AUTHOR
397
+ Written by Richard M. Stallman and David MacKenzie.`,
398
+ "lsb_release": `LSB_RELEASE(1) User Commands LSB_RELEASE(1)
399
+
400
+ NAME
401
+ lsb_release - print distribution-specific information
402
+
403
+ SYNOPSIS
404
+ lsb_release [OPTION]...
405
+
406
+ OPTIONS
407
+ -a show all available information
408
+ -i show distributor ID
409
+ -d show description
410
+ -r show release number
411
+ -c show codename`,
412
+ "mkdir": `MKDIR(1) User Commands MKDIR(1)
413
+
414
+ NAME
415
+ mkdir - make directories
416
+
417
+ SYNOPSIS
418
+ mkdir [OPTION]... DIRECTORY...
419
+
420
+ OPTIONS
421
+ -p no error if existing, make parent directories as needed`,
422
+ "mv": `MV(1) User Commands MV(1)
423
+
424
+ NAME
425
+ mv - move (rename) files
426
+
427
+ SYNOPSIS
428
+ mv SOURCE DEST
429
+
430
+ DESCRIPTION
431
+ Rename SOURCE to DEST, or move SOURCE into a destination directory.`,
432
+ "nano": `NANO(1) User Commands NANO(1)
433
+
434
+ NAME
435
+ nano - simple terminal text editor
436
+
437
+ SYNOPSIS
438
+ nano FILE
439
+
440
+ DESCRIPTION
441
+ Open FILE in an interactive editor.
442
+ Save with Ctrl+O, exit with Ctrl+X.`,
443
+ "neofetch": `NEOFETCH(1) User Commands NEOFETCH(1)
444
+
445
+ NAME
446
+ neofetch - display system information
447
+
448
+ SYNOPSIS
449
+ neofetch
450
+
451
+ DESCRIPTION
452
+ Print OS, kernel, uptime, package count, and related system details.`,
453
+ "node": `NODE(1) User Commands NODE(1)
454
+
455
+ NAME
456
+ node - virtual JavaScript runtime entry point
457
+
458
+ SYNOPSIS
459
+ node [--version] [-e SCRIPT] [-p EXPR]
460
+
461
+ DESCRIPTION
462
+ Execute JavaScript snippets in the virtual runtime.
463
+
464
+ NOTES
465
+ Requires package installation: apt install nodejs.`,
466
+ "npm": `NPM(1) User Commands NPM(1)
467
+
468
+ NAME
469
+ npm - virtual Node.js package manager interface
470
+
471
+ SYNOPSIS
472
+ npm [--version] [COMMAND]
473
+
474
+ DESCRIPTION
475
+ Manage packages and run scripts in the virtual environment.
476
+
477
+ NOTES
478
+ Requires package installation: apt install npm.`,
479
+ "npx": `NPX(1) User Commands NPX(1)
480
+
481
+ NAME
482
+ npx - execute package binaries from npm
483
+
484
+ SYNOPSIS
485
+ npx [--version] <command>
486
+
487
+ DESCRIPTION
488
+ Run package executables in the virtual environment.
489
+
490
+ NOTES
491
+ Requires package installation: apt install npm.`,
492
+ "passwd": `PASSWD(1) User Commands PASSWD(1)
493
+
494
+ NAME
495
+ passwd - change user password
496
+
497
+ SYNOPSIS
498
+ passwd [USER]
499
+
500
+ DESCRIPTION
501
+ Update the authentication token (password) for USER.
502
+ Without USER, change the current user's password.`,
503
+ "ping": `PING(8) User Commands PING(8)
504
+
505
+ NAME
506
+ ping - send ICMP ECHO_REQUEST to network hosts
507
+
508
+ SYNOPSIS
509
+ ping [-c COUNT] DESTINATION
510
+
511
+ OPTIONS
512
+ -c COUNT stop after sending COUNT packets`,
513
+ "printf": `PRINTF(1) User Commands PRINTF(1)
514
+
515
+ NAME
516
+ printf - format and print data
517
+
518
+ SYNOPSIS
519
+ printf FORMAT [ARGUMENT]...
520
+
521
+ DESCRIPTION
522
+ Print ARGUMENT(s) according to FORMAT.
523
+ Supports common conversions like %s, %d, %f, %x and escapes like \\n.`,
524
+ "ps": `PS(1) User Commands PS(1)
525
+
526
+ NAME
527
+ ps - report a snapshot of current processes
528
+
529
+ SYNOPSIS
530
+ ps [OPTION]
531
+
532
+ DESCRIPTION
533
+ Show process information for active sessions and commands.`,
534
+ "pwd": `PWD(1) User Commands PWD(1)
535
+
536
+ NAME
537
+ pwd - print name of current working directory
538
+
539
+ SYNOPSIS
540
+ pwd
541
+
542
+ DESCRIPTION
543
+ Print the absolute path of the current directory.`,
544
+ "python3": `PYTHON3(1) User Commands PYTHON3(1)
545
+
546
+ NAME
547
+ python3 - virtual Python 3 interpreter entry point
548
+
549
+ SYNOPSIS
550
+ python3 [--version] [-V] [-c COMMAND]
551
+
552
+ DESCRIPTION
553
+ Execute Python snippets in the virtual runtime.
554
+
555
+ NOTES
556
+ Requires package installation: apt install python3.`,
557
+ "readlink": `READLINK(1) User Commands READLINK(1)
558
+
559
+ NAME
560
+ readlink - print resolved symbolic links or canonical file names
561
+
562
+ SYNOPSIS
563
+ readlink [OPTION]... FILE
564
+
565
+ OPTIONS
566
+ -f canonicalize by following every symlink in every component`,
567
+ "return": `RETURN(1) Shell Builtins RETURN(1)
568
+
569
+ NAME
570
+ return - return from a shell function
571
+
572
+ SYNOPSIS
573
+ return [N]
574
+
575
+ DESCRIPTION
576
+ Cause a function to exit with status N (default: last status).`,
577
+ "rm": `RM(1) User Commands RM(1)
578
+
579
+ NAME
580
+ rm - remove files or directories
581
+
582
+ SYNOPSIS
583
+ rm [OPTION]... FILE...
584
+
585
+ OPTIONS
586
+ -r remove directories and their contents recursively`,
587
+ "sed": `SED(1) User Commands SED(1)
588
+
589
+ NAME
590
+ sed - stream editor for filtering and transforming text
591
+
592
+ SYNOPSIS
593
+ sed [OPTION]... {-e script} [FILE]...
594
+
595
+ OPTIONS
596
+ -e SCRIPT add SCRIPT to commands to be executed
597
+ -i edit files in place`,
598
+ "set": `SET(1) Shell Builtins SET(1)
599
+
600
+ NAME
601
+ set - set or unset shell options and positional parameters
602
+
603
+ SYNOPSIS
604
+ set [OPTION]... [ARG]...
605
+ set [NAME=VALUE]...
606
+
607
+ DESCRIPTION
608
+ Display or modify shell variable state.`,
609
+ "shift": `SHIFT(1) Shell Builtins SHIFT(1)
610
+
611
+ NAME
612
+ shift - shift positional parameters
613
+
614
+ SYNOPSIS
615
+ shift [N]
616
+
617
+ DESCRIPTION
618
+ Rename positional parameters by discarding the first N arguments.`,
619
+ "sleep": `SLEEP(1) User Commands SLEEP(1)
620
+
621
+ NAME
622
+ sleep - delay for a specified amount of time
623
+
624
+ SYNOPSIS
625
+ sleep NUMBER
626
+
627
+ DESCRIPTION
628
+ Pause execution for NUMBER seconds.`,
629
+ "sort": `SORT(1) User Commands SORT(1)
630
+
631
+ NAME
632
+ sort - sort lines of text files
633
+
634
+ SYNOPSIS
635
+ sort [OPTION]... [FILE]...
636
+
637
+ OPTIONS
638
+ -r reverse the result of comparisons
639
+ -n compare according to string numerical value
640
+ -u output only the first of an equal run`,
641
+ "source": `SOURCE(1) Shell Builtins SOURCE(1)
642
+
643
+ NAME
644
+ source - execute commands from a file in the current shell
645
+
646
+ SYNOPSIS
647
+ source FILE
648
+ . FILE
649
+
650
+ DESCRIPTION
651
+ Read and execute commands from FILE in the current shell context.`,
652
+ "ssh": `SSH(1) OpenSSH SSH(1)
653
+
654
+ NAME
655
+ ssh - OpenSSH remote login client
656
+
657
+ SYNOPSIS
658
+ ssh [-p port] [user@]hostname [command]
659
+
660
+ DESCRIPTION
661
+ ssh (SSH client) is a program for logging into a remote machine and
662
+ for executing commands on a remote machine.`,
663
+ "stat": `STAT(1) User Commands STAT(1)
664
+
665
+ NAME
666
+ stat - display file status
667
+
668
+ SYNOPSIS
669
+ stat [OPTION]... FILE...
670
+
671
+ OPTIONS
672
+ -c, --format=FORMAT use the specified output format`,
673
+ "su": `SU(1) User Commands SU(1)
674
+
675
+ NAME
676
+ su - run a command with substitute user and group ID
677
+
678
+ SYNOPSIS
679
+ su [OPTION]... [USER]
680
+
681
+ OPTIONS
682
+ - start a login shell
683
+
684
+ DESCRIPTION
685
+ Switch to another user account in the current session.`,
686
+ "sudo": `SUDO(8) User Commands SUDO(8)
687
+
688
+ NAME
689
+ sudo - execute a command as another user
690
+
691
+ SYNOPSIS
692
+ sudo [OPTION]... COMMAND [ARG]...
693
+
694
+ OPTIONS
695
+ -i run login shell as target user
696
+ -u USER run command as USER`,
697
+ "tail": `TAIL(1) User Commands TAIL(1)
698
+
699
+ NAME
700
+ tail - output the last part of files
701
+
702
+ SYNOPSIS
703
+ tail [OPTION]... [FILE]...
704
+
705
+ OPTIONS
706
+ -n, --lines=[+]NUM output the last NUM lines`,
707
+ "tar": `TAR(1) GNU tar Manual TAR(1)
708
+
709
+ NAME
710
+ tar - an archiving utility
711
+
712
+ SYNOPSIS
713
+ tar [OPTION...] [FILE]...
714
+
715
+ DESCRIPTION
716
+ tar saves many files together into a single tape or disk archive,
717
+ and can restore individual files from the archive.
718
+
719
+ OPTIONS
720
+ -c, --create create a new archive
721
+ -x, --extract extract files from an archive
722
+ -z, --gzip filter the archive through gzip
723
+ -f, --file=ARCHIVE use archive file or device ARCHIVE
724
+ -v, --verbose verbosely list files processed
725
+ -t, --list list the contents of an archive`,
726
+ "tee": `TEE(1) User Commands TEE(1)
727
+
728
+ NAME
729
+ tee - read from standard input and write to standard output and files
730
+
731
+ SYNOPSIS
732
+ tee [OPTION]... [FILE]...
733
+
734
+ OPTIONS
735
+ -a append to the given FILEs, do not overwrite`,
736
+ "test": `TEST(1) Shell Builtins TEST(1)
737
+
738
+ NAME
739
+ test - check file types and compare values
740
+
741
+ SYNOPSIS
742
+ test EXPRESSION
743
+ [ EXPRESSION ]
744
+
745
+ DESCRIPTION
746
+ Evaluate conditional expressions for scripts and shell logic.`,
747
+ "touch": `TOUCH(1) User Commands TOUCH(1)
748
+
749
+ NAME
750
+ touch - change file timestamps / create file
751
+
752
+ SYNOPSIS
753
+ touch FILE...
754
+
755
+ DESCRIPTION
756
+ Update access and modification times.
757
+ If FILE does not exist, create an empty file.`,
758
+ "tr": `TR(1) User Commands TR(1)
759
+
760
+ NAME
761
+ tr - translate or delete characters
762
+
763
+ SYNOPSIS
764
+ tr [OPTION]... SET1 [SET2]
765
+
766
+ OPTIONS
767
+ -d delete characters in SET1 instead of translating`,
768
+ "trap": `TRAP(1) Shell Builtins TRAP(1)
769
+
770
+ NAME
771
+ trap - trap signals and other events
772
+
773
+ SYNOPSIS
774
+ trap [ACTION] [SIGNAL]...
775
+
776
+ DESCRIPTION
777
+ Define or clear handlers for shell signals and EXIT.`,
778
+ "true": `TRUE(1) User Commands TRUE(1)
779
+
780
+ NAME
781
+ true - do nothing, successfully
782
+
783
+ SYNOPSIS
784
+ true
785
+
786
+ DESCRIPTION
787
+ Exit with a status code indicating success (0).`,
788
+ "type": `TYPE(1) Shell Builtins TYPE(1)
789
+
790
+ NAME
791
+ type - display how a command name is interpreted
792
+
793
+ SYNOPSIS
794
+ type NAME...
795
+
796
+ DESCRIPTION
797
+ Indicate whether NAME is a shell builtin, alias, or found in PATH.`,
798
+ "uname": `UNAME(1) User Commands UNAME(1)
799
+
800
+ NAME
801
+ uname - print system information
802
+
803
+ SYNOPSIS
804
+ uname [OPTION]...
805
+
806
+ OPTIONS
807
+ -a print all information
808
+ -r print kernel release
809
+ -m print machine hardware name`,
810
+ "uniq": `UNIQ(1) User Commands UNIQ(1)
811
+
812
+ NAME
813
+ uniq - report or omit repeated lines
814
+
815
+ SYNOPSIS
816
+ uniq [OPTION]... [INPUT [OUTPUT]]
817
+
818
+ OPTIONS
819
+ -c prefix lines by the number of occurrences
820
+ -d only print duplicate lines
821
+ -u only print unique lines`,
822
+ "unset": `UNSET(1) Shell Builtins UNSET(1)
823
+
824
+ NAME
825
+ unset - unset values and attributes of shell variables
826
+
827
+ SYNOPSIS
828
+ unset NAME...
829
+
830
+ DESCRIPTION
831
+ Remove one or more shell variables from the current environment.`,
832
+ "uptime": `UPTIME(1) User Commands UPTIME(1)
833
+
834
+ NAME
835
+ uptime - tell how long the system has been running
836
+
837
+ SYNOPSIS
838
+ uptime [OPTION]
839
+
840
+ OPTIONS
841
+ -p show uptime in a pretty format
842
+ -s show system up since time`,
843
+ "wc": `WC(1) User Commands WC(1)
844
+
845
+ NAME
846
+ wc - print newline, word, and byte counts for each file
847
+
848
+ SYNOPSIS
849
+ wc [OPTION]... [FILE]...
850
+
851
+ OPTIONS
852
+ -l print the newline counts
853
+ -w print the word counts
854
+ -c print the byte counts`,
855
+ "wget": `WGET(1) User Commands WGET(1)
856
+
857
+ NAME
858
+ wget - non-interactive network downloader
859
+
860
+ SYNOPSIS
861
+ wget [OPTION]... [URL]...
862
+
863
+ OPTIONS
864
+ -O FILE write documents to FILE
865
+ -P DIR save files to DIR
866
+ -q quiet mode`,
867
+ "which": `WHICH(1) User Commands WHICH(1)
868
+
869
+ NAME
870
+ which - locate a command
871
+
872
+ SYNOPSIS
873
+ which COMMAND...
874
+
875
+ DESCRIPTION
876
+ Print the path of COMMAND found in $PATH.`,
877
+ "whoami": `WHOAMI(1) User Commands WHOAMI(1)
878
+
879
+ NAME
880
+ whoami - print effective user name
881
+
882
+ SYNOPSIS
883
+ whoami
884
+
885
+ DESCRIPTION
886
+ Print the user name associated with the current effective user ID.`,
887
+ "xargs": `XARGS(1) User Commands XARGS(1)
888
+
889
+ NAME
890
+ xargs - build and execute command lines from standard input
891
+
892
+ SYNOPSIS
893
+ xargs [COMMAND [INITIAL-ARGS]]
894
+
895
+ DESCRIPTION
896
+ Read items from stdin and execute COMMAND with those items as arguments.`,
897
+ };
898
+ //# sourceMappingURL=manuals-bundle.js.map