typescript-virtual-container 1.4.0 → 1.4.1

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 (102) hide show
  1. package/builds/self-standalone.js +184 -300
  2. package/builds/self-standalone.js.map +3 -3
  3. package/builds/standalone-wo-sftp.js +155 -271
  4. package/builds/standalone-wo-sftp.js.map +3 -3
  5. package/builds/standalone.js +149 -265
  6. package/builds/standalone.js.map +3 -3
  7. package/dist/VirtualPackageManager/index.d.ts.map +1 -1
  8. package/dist/VirtualPackageManager/index.js +29 -1
  9. package/dist/commands/curl.d.ts.map +1 -1
  10. package/dist/commands/curl.js +2 -1
  11. package/dist/commands/gzip.d.ts.map +1 -1
  12. package/dist/commands/gzip.js +6 -0
  13. package/dist/commands/man.d.ts.map +1 -1
  14. package/dist/commands/man.js +30 -136
  15. package/dist/commands/neofetch.d.ts.map +1 -1
  16. package/dist/commands/neofetch.js +6 -0
  17. package/dist/commands/wget.d.ts.map +1 -1
  18. package/dist/commands/wget.js +11 -1
  19. package/package.json +2 -2
  20. package/src/VirtualPackageManager/index.ts +29 -1
  21. package/src/commands/curl.ts +2 -1
  22. package/src/commands/gzip.ts +7 -0
  23. package/src/commands/man.ts +38 -143
  24. package/src/commands/manuals/adduser.txt +11 -0
  25. package/src/commands/manuals/apt-cache.txt +12 -0
  26. package/src/commands/manuals/apt.txt +20 -0
  27. package/src/commands/manuals/awk.txt +13 -0
  28. package/src/commands/manuals/cat.txt +14 -0
  29. package/src/commands/manuals/cd.txt +16 -0
  30. package/src/commands/manuals/chmod.txt +16 -0
  31. package/src/commands/manuals/clear.txt +10 -0
  32. package/src/commands/manuals/cp.txt +10 -0
  33. package/src/commands/manuals/curl.txt +20 -0
  34. package/src/commands/manuals/date.txt +14 -0
  35. package/src/commands/manuals/declare.txt +12 -0
  36. package/src/commands/manuals/deluser.txt +10 -0
  37. package/src/commands/manuals/df.txt +10 -0
  38. package/src/commands/manuals/dpkg-query.txt +11 -0
  39. package/src/commands/manuals/dpkg.txt +14 -0
  40. package/src/commands/manuals/du.txt +11 -0
  41. package/src/commands/manuals/echo.txt +11 -0
  42. package/src/commands/manuals/false.txt +10 -0
  43. package/src/commands/manuals/find.txt +11 -0
  44. package/src/commands/manuals/free.txt +12 -0
  45. package/src/commands/manuals/grep.txt +13 -0
  46. package/src/commands/manuals/groups.txt +10 -0
  47. package/src/commands/manuals/gzip.txt +11 -0
  48. package/src/commands/manuals/head.txt +10 -0
  49. package/src/commands/manuals/help.txt +11 -0
  50. package/src/commands/manuals/history.txt +11 -0
  51. package/src/commands/manuals/hostname.txt +10 -0
  52. package/src/commands/manuals/id.txt +10 -0
  53. package/src/commands/manuals/kill.txt +13 -0
  54. package/src/commands/manuals/ls.txt +20 -0
  55. package/src/commands/manuals/lsb_release.txt +14 -0
  56. package/src/commands/manuals/mkdir.txt +10 -0
  57. package/src/commands/manuals/mv.txt +10 -0
  58. package/src/commands/manuals/nano.txt +11 -0
  59. package/src/commands/manuals/neofetch.txt +10 -0
  60. package/src/commands/manuals/node.txt +13 -0
  61. package/src/commands/manuals/npm.txt +13 -0
  62. package/src/commands/manuals/npx.txt +13 -0
  63. package/src/commands/manuals/passwd.txt +11 -0
  64. package/src/commands/manuals/ping.txt +10 -0
  65. package/src/commands/manuals/printf.txt +11 -0
  66. package/src/commands/manuals/ps.txt +10 -0
  67. package/src/commands/manuals/pwd.txt +10 -0
  68. package/src/commands/manuals/python3.txt +13 -0
  69. package/src/commands/manuals/readlink.txt +10 -0
  70. package/src/commands/manuals/return.txt +10 -0
  71. package/src/commands/manuals/rm.txt +10 -0
  72. package/src/commands/manuals/sed.txt +11 -0
  73. package/src/commands/manuals/set.txt +11 -0
  74. package/src/commands/manuals/shift.txt +10 -0
  75. package/src/commands/manuals/sleep.txt +10 -0
  76. package/src/commands/manuals/sort.txt +12 -0
  77. package/src/commands/manuals/source.txt +11 -0
  78. package/src/commands/manuals/ssh.txt +11 -0
  79. package/src/commands/manuals/stat.txt +10 -0
  80. package/src/commands/manuals/su.txt +13 -0
  81. package/src/commands/manuals/sudo.txt +11 -0
  82. package/src/commands/manuals/tail.txt +10 -0
  83. package/src/commands/manuals/tar.txt +19 -0
  84. package/src/commands/manuals/tee.txt +10 -0
  85. package/src/commands/manuals/test.txt +11 -0
  86. package/src/commands/manuals/touch.txt +11 -0
  87. package/src/commands/manuals/tr.txt +10 -0
  88. package/src/commands/manuals/trap.txt +10 -0
  89. package/src/commands/manuals/true.txt +10 -0
  90. package/src/commands/manuals/type.txt +10 -0
  91. package/src/commands/manuals/uname.txt +12 -0
  92. package/src/commands/manuals/uniq.txt +12 -0
  93. package/src/commands/manuals/unset.txt +10 -0
  94. package/src/commands/manuals/uptime.txt +11 -0
  95. package/src/commands/manuals/wc.txt +12 -0
  96. package/src/commands/manuals/wget.txt +12 -0
  97. package/src/commands/manuals/which.txt +10 -0
  98. package/src/commands/manuals/whoami.txt +10 -0
  99. package/src/commands/manuals/xargs.txt +10 -0
  100. package/src/commands/neofetch.ts +7 -0
  101. package/src/commands/wget.ts +12 -1
  102. package/tests/new-features.test.ts +2 -2
@@ -0,0 +1,16 @@
1
+ CD(1) Shell Builtins CD(1)
2
+
3
+ NAME
4
+ cd - change the shell working directory
5
+
6
+ SYNOPSIS
7
+ cd [DIRECTORY]
8
+
9
+ DESCRIPTION
10
+ Change the current working directory.
11
+ Without DIRECTORY, changes to $HOME.
12
+
13
+ EXAMPLES
14
+ cd /etc
15
+ cd ..
16
+ cd ~
@@ -0,0 +1,16 @@
1
+ CHMOD(1) User Commands CHMOD(1)
2
+
3
+ NAME
4
+ chmod - change file mode bits
5
+
6
+ SYNOPSIS
7
+ chmod [OPTION]... MODE[,MODE]... FILE...
8
+ chmod [OPTION]... OCTAL-MODE FILE...
9
+
10
+ DESCRIPTION
11
+ Change the file mode bits of each given file according to MODE.
12
+
13
+ EXAMPLES
14
+ chmod 755 script.sh rwxr-xr-x
15
+ chmod 644 file.txt rw-r--r--
16
+ chmod +x script.sh add execute permission
@@ -0,0 +1,10 @@
1
+ CLEAR(1) User Commands CLEAR(1)
2
+
3
+ NAME
4
+ clear - clear the terminal screen
5
+
6
+ SYNOPSIS
7
+ clear
8
+
9
+ DESCRIPTION
10
+ Clear the display and move cursor to top-left.
@@ -0,0 +1,10 @@
1
+ CP(1) User Commands CP(1)
2
+
3
+ NAME
4
+ cp - copy files and directories
5
+
6
+ SYNOPSIS
7
+ cp [OPTION]... SOURCE... DEST
8
+
9
+ OPTIONS
10
+ -r copy directories recursively
@@ -0,0 +1,20 @@
1
+ CURL(1) User Commands CURL(1)
2
+
3
+ NAME
4
+ curl - transfer a URL
5
+
6
+ SYNOPSIS
7
+ curl [options / URLs]
8
+
9
+ DESCRIPTION
10
+ curl is a tool for transferring data with URL syntax.
11
+
12
+ OPTIONS
13
+ -o, --output <file> Write output to <file>
14
+ -X, --request <method> Specify request method
15
+ -d, --data <data> HTTP POST data
16
+ -H, --header <header> Pass custom header
17
+ -s, --silent Silent mode
18
+ -I, --head Show document info only
19
+ -L, --location Follow redirects
20
+ -v, --verbose Make the operation more talkative
@@ -0,0 +1,14 @@
1
+ DATE(1) User Commands DATE(1)
2
+
3
+ NAME
4
+ date - print or set the system date and time
5
+
6
+ SYNOPSIS
7
+ date [+FORMAT]
8
+
9
+ DESCRIPTION
10
+ Display current date/time, optionally formatted.
11
+
12
+ EXAMPLES
13
+ date
14
+ date +%Y-%m-%d
@@ -0,0 +1,12 @@
1
+ DECLARE(1) Shell Builtins DECLARE(1)
2
+
3
+ NAME
4
+ declare - set variable values and attributes
5
+
6
+ SYNOPSIS
7
+ declare [OPTION]... [NAME[=VALUE]...]
8
+
9
+ OPTIONS
10
+ -i variable has integer attribute
11
+ -r make NAMEs readonly
12
+ -x export NAMEs to environment
@@ -0,0 +1,10 @@
1
+ DELUSER(8) User Commands DELUSER(8)
2
+
3
+ NAME
4
+ deluser - remove a user account
5
+
6
+ SYNOPSIS
7
+ deluser [OPTION] USERNAME
8
+
9
+ OPTIONS
10
+ -f, --force remove without interactive confirmation
@@ -0,0 +1,10 @@
1
+ DF(1) User Commands DF(1)
2
+
3
+ NAME
4
+ df - report file system disk space usage
5
+
6
+ SYNOPSIS
7
+ df [OPTION]... [FILE]...
8
+
9
+ OPTIONS
10
+ -h print sizes in human readable format
@@ -0,0 +1,11 @@
1
+ DPKG-QUERY(1) User Commands DPKG-QUERY(1)
2
+
3
+ NAME
4
+ dpkg-query - tool to query the dpkg database
5
+
6
+ SYNOPSIS
7
+ dpkg-query [OPTION]... [ACTION]
8
+
9
+ OPTIONS
10
+ -W list installed packages (show format)
11
+ -l list packages
@@ -0,0 +1,14 @@
1
+ DPKG(1) User Commands DPKG(1)
2
+
3
+ NAME
4
+ dpkg - package manager for Debian-like systems
5
+
6
+ SYNOPSIS
7
+ dpkg [OPTION]... ACTION
8
+
9
+ OPTIONS
10
+ -l list installed packages
11
+ -s show package status
12
+ -L list files in package
13
+ -r remove package
14
+ -P purge package
@@ -0,0 +1,11 @@
1
+ DU(1) User Commands DU(1)
2
+
3
+ NAME
4
+ du - estimate file space usage
5
+
6
+ SYNOPSIS
7
+ du [OPTION]... [FILE]...
8
+
9
+ OPTIONS
10
+ -h print sizes in human readable format
11
+ -s display only a total for each argument
@@ -0,0 +1,11 @@
1
+ ECHO(1) User Commands ECHO(1)
2
+
3
+ NAME
4
+ echo - display a line of text
5
+
6
+ SYNOPSIS
7
+ echo [OPTION]... [STRING]...
8
+
9
+ OPTIONS
10
+ -n do not output the trailing newline
11
+ -e enable interpretation of backslash escapes
@@ -0,0 +1,10 @@
1
+ FALSE(1) User Commands FALSE(1)
2
+
3
+ NAME
4
+ false - do nothing, unsuccessfully
5
+
6
+ SYNOPSIS
7
+ false
8
+
9
+ DESCRIPTION
10
+ Exit with a status code indicating failure (1).
@@ -0,0 +1,11 @@
1
+ FIND(1) User Commands FIND(1)
2
+
3
+ NAME
4
+ find - search for files in a directory hierarchy
5
+
6
+ SYNOPSIS
7
+ find [PATH] [EXPRESSION]
8
+
9
+ OPTIONS
10
+ -name PATTERN base name matches shell PATTERN
11
+ -type TYPE file type, e.g. f for file, d for directory
@@ -0,0 +1,12 @@
1
+ FREE(1) User Commands FREE(1)
2
+
3
+ NAME
4
+ free - display amount of free and used memory in the system
5
+
6
+ SYNOPSIS
7
+ free [OPTION]...
8
+
9
+ OPTIONS
10
+ -h show all output fields automatically scaled
11
+ -m show output in mebibytes
12
+ -g show output in gibibytes
@@ -0,0 +1,13 @@
1
+ GREP(1) User Commands GREP(1)
2
+
3
+ NAME
4
+ grep, egrep, fgrep - print lines that match patterns
5
+
6
+ SYNOPSIS
7
+ grep [OPTION]... PATTERNS [FILE]...
8
+
9
+ OPTIONS
10
+ -i, --ignore-case ignore case distinctions in patterns and data
11
+ -v, --invert-match select non-matching lines
12
+ -n, --line-number print line number with output lines
13
+ -r, --recursive read all files under each directory, recursively
@@ -0,0 +1,10 @@
1
+ GROUPS(1) User Commands GROUPS(1)
2
+
3
+ NAME
4
+ groups - print the groups a user is in
5
+
6
+ SYNOPSIS
7
+ groups [USER]
8
+
9
+ DESCRIPTION
10
+ Print group memberships for USER or current user if omitted.
@@ -0,0 +1,11 @@
1
+ GZIP(1) User Commands GZIP(1)
2
+
3
+ NAME
4
+ gzip, gunzip - compress or expand files
5
+
6
+ SYNOPSIS
7
+ gzip FILE...
8
+ gunzip FILE...
9
+
10
+ DESCRIPTION
11
+ Compress or decompress files in place.
@@ -0,0 +1,10 @@
1
+ HEAD(1) User Commands HEAD(1)
2
+
3
+ NAME
4
+ head - output the first part of files
5
+
6
+ SYNOPSIS
7
+ head [OPTION]... [FILE]...
8
+
9
+ OPTIONS
10
+ -n, --lines=[-]NUM print the first NUM lines
@@ -0,0 +1,11 @@
1
+ HELP(1) Shell Builtins HELP(1)
2
+
3
+ NAME
4
+ help - display information about builtin commands
5
+
6
+ SYNOPSIS
7
+ help [COMMAND]
8
+
9
+ DESCRIPTION
10
+ With no arguments, list available commands.
11
+ With COMMAND, show usage details for that command.
@@ -0,0 +1,11 @@
1
+ HISTORY(1) Shell Builtins HISTORY(1)
2
+
3
+ NAME
4
+ history - command history list
5
+
6
+ SYNOPSIS
7
+ history [N]
8
+
9
+ DESCRIPTION
10
+ Print recent command history entries.
11
+ If N is provided, print only the last N entries.
@@ -0,0 +1,10 @@
1
+ HOSTNAME(1) User Commands HOSTNAME(1)
2
+
3
+ NAME
4
+ hostname - show or set the system host name
5
+
6
+ SYNOPSIS
7
+ hostname
8
+
9
+ DESCRIPTION
10
+ Print the current host name.
@@ -0,0 +1,10 @@
1
+ ID(1) User Commands ID(1)
2
+
3
+ NAME
4
+ id - print real and effective user and group IDs
5
+
6
+ SYNOPSIS
7
+ id [USER]
8
+
9
+ DESCRIPTION
10
+ Print user identity information including uid, gid, and groups.
@@ -0,0 +1,13 @@
1
+ KILL(1) User Commands KILL(1)
2
+
3
+ NAME
4
+ kill - send signals to processes
5
+
6
+ SYNOPSIS
7
+ kill [-SIGNAL] PID...
8
+
9
+ DESCRIPTION
10
+ Send a signal to one or more process IDs.
11
+
12
+ NOTES
13
+ This environment provides a mock process model.
@@ -0,0 +1,20 @@
1
+ LS(1) User Commands LS(1)
2
+
3
+ NAME
4
+ ls - list directory contents
5
+
6
+ SYNOPSIS
7
+ ls [OPTION]... [FILE]...
8
+
9
+ DESCRIPTION
10
+ List information about the FILEs (the current directory by default).
11
+
12
+ OPTIONS
13
+ -l use a long listing format
14
+ -a do not ignore entries starting with .
15
+ -h with -l, print human readable sizes
16
+ -r reverse order while sorting
17
+ -t sort by modification time
18
+
19
+ AUTHOR
20
+ Written by Richard M. Stallman and David MacKenzie.
@@ -0,0 +1,14 @@
1
+ LSB_RELEASE(1) User Commands LSB_RELEASE(1)
2
+
3
+ NAME
4
+ lsb_release - print distribution-specific information
5
+
6
+ SYNOPSIS
7
+ lsb_release [OPTION]...
8
+
9
+ OPTIONS
10
+ -a show all available information
11
+ -i show distributor ID
12
+ -d show description
13
+ -r show release number
14
+ -c show codename
@@ -0,0 +1,10 @@
1
+ MKDIR(1) User Commands MKDIR(1)
2
+
3
+ NAME
4
+ mkdir - make directories
5
+
6
+ SYNOPSIS
7
+ mkdir [OPTION]... DIRECTORY...
8
+
9
+ OPTIONS
10
+ -p no error if existing, make parent directories as needed
@@ -0,0 +1,10 @@
1
+ MV(1) User Commands MV(1)
2
+
3
+ NAME
4
+ mv - move (rename) files
5
+
6
+ SYNOPSIS
7
+ mv SOURCE DEST
8
+
9
+ DESCRIPTION
10
+ Rename SOURCE to DEST, or move SOURCE into a destination directory.
@@ -0,0 +1,11 @@
1
+ NANO(1) User Commands NANO(1)
2
+
3
+ NAME
4
+ nano - simple terminal text editor
5
+
6
+ SYNOPSIS
7
+ nano FILE
8
+
9
+ DESCRIPTION
10
+ Open FILE in an interactive editor.
11
+ Save with Ctrl+O, exit with Ctrl+X.
@@ -0,0 +1,10 @@
1
+ NEOFETCH(1) User Commands NEOFETCH(1)
2
+
3
+ NAME
4
+ neofetch - display system information
5
+
6
+ SYNOPSIS
7
+ neofetch
8
+
9
+ DESCRIPTION
10
+ Print OS, kernel, uptime, package count, and related system details.
@@ -0,0 +1,13 @@
1
+ NODE(1) User Commands NODE(1)
2
+
3
+ NAME
4
+ node - virtual JavaScript runtime entry point
5
+
6
+ SYNOPSIS
7
+ node [--version] [-e SCRIPT] [-p EXPR]
8
+
9
+ DESCRIPTION
10
+ Execute JavaScript snippets in the virtual runtime.
11
+
12
+ NOTES
13
+ Requires package installation: apt install nodejs.
@@ -0,0 +1,13 @@
1
+ NPM(1) User Commands NPM(1)
2
+
3
+ NAME
4
+ npm - virtual Node.js package manager interface
5
+
6
+ SYNOPSIS
7
+ npm [--version] [COMMAND]
8
+
9
+ DESCRIPTION
10
+ Manage packages and run scripts in the virtual environment.
11
+
12
+ NOTES
13
+ Requires package installation: apt install npm.
@@ -0,0 +1,13 @@
1
+ NPX(1) User Commands NPX(1)
2
+
3
+ NAME
4
+ npx - execute package binaries from npm
5
+
6
+ SYNOPSIS
7
+ npx [--version] <command>
8
+
9
+ DESCRIPTION
10
+ Run package executables in the virtual environment.
11
+
12
+ NOTES
13
+ Requires package installation: apt install npm.
@@ -0,0 +1,11 @@
1
+ PASSWD(1) User Commands PASSWD(1)
2
+
3
+ NAME
4
+ passwd - change user password
5
+
6
+ SYNOPSIS
7
+ passwd [USER]
8
+
9
+ DESCRIPTION
10
+ Update the authentication token (password) for USER.
11
+ Without USER, change the current user's password.
@@ -0,0 +1,10 @@
1
+ PING(8) User Commands PING(8)
2
+
3
+ NAME
4
+ ping - send ICMP ECHO_REQUEST to network hosts
5
+
6
+ SYNOPSIS
7
+ ping [-c COUNT] DESTINATION
8
+
9
+ OPTIONS
10
+ -c COUNT stop after sending COUNT packets
@@ -0,0 +1,11 @@
1
+ PRINTF(1) User Commands PRINTF(1)
2
+
3
+ NAME
4
+ printf - format and print data
5
+
6
+ SYNOPSIS
7
+ printf FORMAT [ARGUMENT]...
8
+
9
+ DESCRIPTION
10
+ Print ARGUMENT(s) according to FORMAT.
11
+ Supports common conversions like %s, %d, %f, %x and escapes like \n.
@@ -0,0 +1,10 @@
1
+ PS(1) User Commands PS(1)
2
+
3
+ NAME
4
+ ps - report a snapshot of current processes
5
+
6
+ SYNOPSIS
7
+ ps [OPTION]
8
+
9
+ DESCRIPTION
10
+ Show process information for active sessions and commands.
@@ -0,0 +1,10 @@
1
+ PWD(1) User Commands PWD(1)
2
+
3
+ NAME
4
+ pwd - print name of current working directory
5
+
6
+ SYNOPSIS
7
+ pwd
8
+
9
+ DESCRIPTION
10
+ Print the absolute path of the current directory.
@@ -0,0 +1,13 @@
1
+ PYTHON3(1) User Commands PYTHON3(1)
2
+
3
+ NAME
4
+ python3 - virtual Python 3 interpreter entry point
5
+
6
+ SYNOPSIS
7
+ python3 [--version] [-V] [-c COMMAND]
8
+
9
+ DESCRIPTION
10
+ Execute Python snippets in the virtual runtime.
11
+
12
+ NOTES
13
+ Requires package installation: apt install python3.
@@ -0,0 +1,10 @@
1
+ READLINK(1) User Commands READLINK(1)
2
+
3
+ NAME
4
+ readlink - print resolved symbolic links or canonical file names
5
+
6
+ SYNOPSIS
7
+ readlink [OPTION]... FILE
8
+
9
+ OPTIONS
10
+ -f canonicalize by following every symlink in every component
@@ -0,0 +1,10 @@
1
+ RETURN(1) Shell Builtins RETURN(1)
2
+
3
+ NAME
4
+ return - return from a shell function
5
+
6
+ SYNOPSIS
7
+ return [N]
8
+
9
+ DESCRIPTION
10
+ Cause a function to exit with status N (default: last status).
@@ -0,0 +1,10 @@
1
+ RM(1) User Commands RM(1)
2
+
3
+ NAME
4
+ rm - remove files or directories
5
+
6
+ SYNOPSIS
7
+ rm [OPTION]... FILE...
8
+
9
+ OPTIONS
10
+ -r remove directories and their contents recursively
@@ -0,0 +1,11 @@
1
+ SED(1) User Commands SED(1)
2
+
3
+ NAME
4
+ sed - stream editor for filtering and transforming text
5
+
6
+ SYNOPSIS
7
+ sed [OPTION]... {-e script} [FILE]...
8
+
9
+ OPTIONS
10
+ -e SCRIPT add SCRIPT to commands to be executed
11
+ -i edit files in place
@@ -0,0 +1,11 @@
1
+ SET(1) Shell Builtins SET(1)
2
+
3
+ NAME
4
+ set - set or unset shell options and positional parameters
5
+
6
+ SYNOPSIS
7
+ set [OPTION]... [ARG]...
8
+ set [NAME=VALUE]...
9
+
10
+ DESCRIPTION
11
+ Display or modify shell variable state.
@@ -0,0 +1,10 @@
1
+ SHIFT(1) Shell Builtins SHIFT(1)
2
+
3
+ NAME
4
+ shift - shift positional parameters
5
+
6
+ SYNOPSIS
7
+ shift [N]
8
+
9
+ DESCRIPTION
10
+ Rename positional parameters by discarding the first N arguments.
@@ -0,0 +1,10 @@
1
+ SLEEP(1) User Commands SLEEP(1)
2
+
3
+ NAME
4
+ sleep - delay for a specified amount of time
5
+
6
+ SYNOPSIS
7
+ sleep NUMBER
8
+
9
+ DESCRIPTION
10
+ Pause execution for NUMBER seconds.
@@ -0,0 +1,12 @@
1
+ SORT(1) User Commands SORT(1)
2
+
3
+ NAME
4
+ sort - sort lines of text files
5
+
6
+ SYNOPSIS
7
+ sort [OPTION]... [FILE]...
8
+
9
+ OPTIONS
10
+ -r reverse the result of comparisons
11
+ -n compare according to string numerical value
12
+ -u output only the first of an equal run
@@ -0,0 +1,11 @@
1
+ SOURCE(1) Shell Builtins SOURCE(1)
2
+
3
+ NAME
4
+ source - execute commands from a file in the current shell
5
+
6
+ SYNOPSIS
7
+ source FILE
8
+ . FILE
9
+
10
+ DESCRIPTION
11
+ Read and execute commands from FILE in the current shell context.
@@ -0,0 +1,11 @@
1
+ SSH(1) OpenSSH SSH(1)
2
+
3
+ NAME
4
+ ssh - OpenSSH remote login client
5
+
6
+ SYNOPSIS
7
+ ssh [-p port] [user@]hostname [command]
8
+
9
+ DESCRIPTION
10
+ ssh (SSH client) is a program for logging into a remote machine and
11
+ for executing commands on a remote machine.