From 8597c2b19467e79bf47f70d41123c0be516f556a Mon Sep 17 00:00:00 2001 From: hustcer Date: Fri, 6 Dec 2024 09:40:14 +0800 Subject: [PATCH] Regenerate command docs --- commands/docs/cal.md | 6 +++--- commands/docs/collect.md | 2 +- commands/docs/cp.md | 4 ++-- commands/docs/decode_base32.md | 2 +- commands/docs/decode_base32hex.md | 2 +- commands/docs/decode_base64.md | 4 ++-- commands/docs/def.md | 4 ++-- commands/docs/detect_columns.md | 2 +- commands/docs/do.md | 2 +- commands/docs/encode_base32.md | 2 +- commands/docs/encode_base32hex.md | 2 +- commands/docs/encode_base64.md | 4 ++-- commands/docs/encode_hex.md | 2 +- commands/docs/explore.md | 2 +- commands/docs/export_def.md | 4 ++-- commands/docs/from_csv.md | 4 ++-- commands/docs/from_msgpack.md | 2 +- commands/docs/from_msgpackz.md | 2 +- commands/docs/from_tsv.md | 4 ++-- commands/docs/from_xml.md | 4 ++-- commands/docs/group-by.md | 2 +- commands/docs/into_datetime.md | 4 ++-- commands/docs/mktemp.md | 2 +- commands/docs/move.md | 4 ++-- commands/docs/plugin_add.md | 2 +- commands/docs/plugin_list.md | 2 +- commands/docs/plugin_rm.md | 2 +- commands/docs/plugin_use.md | 2 +- commands/docs/polars_concat.md | 10 +++++----- commands/docs/polars_open.md | 12 ++++++------ commands/docs/polars_profile.md | 4 ++-- commands/docs/polars_save.md | 6 +++--- commands/docs/rotate.md | 2 +- commands/docs/str_expand.md | 2 +- commands/docs/table.md | 4 ++-- commands/docs/to_csv.md | 2 +- commands/docs/to_tsv.md | 2 +- commands/docs/ulimit.md | 9 +++++++++ 38 files changed, 71 insertions(+), 62 deletions(-) diff --git a/commands/docs/cal.md b/commands/docs/cal.md index 54c7140d629..13621891594 100644 --- a/commands/docs/cal.md +++ b/commands/docs/cal.md @@ -24,9 +24,9 @@ usage: | - `--quarter, -q`: Display the quarter column - `--month, -m`: Display the month column - `--as-table, -t`: output as a table - - `--full-year, - {int}`: Display a year-long calendar for the specified year - - `--week-start, - {string}`: Display the calendar with the specified day as the first day of the week - - `--month-names, -`: Display the month names instead of integers + - `--full-year {int}`: Display a year-long calendar for the specified year + - `--week-start {string}`: Display the calendar with the specified day as the first day of the week + - `--month-names`: Display the month names instead of integers ## Input/output types: diff --git a/commands/docs/collect.md b/commands/docs/collect.md index dba14976631..0a819b37bc3 100644 --- a/commands/docs/collect.md +++ b/commands/docs/collect.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--keep-env, -`: let the closure affect environment variables + - `--keep-env`: let the closure affect environment variables ## Parameters diff --git a/commands/docs/cp.md b/commands/docs/cp.md index 9262156512b..c09563fb015 100644 --- a/commands/docs/cp.md +++ b/commands/docs/cp.md @@ -29,10 +29,10 @@ usage: | - `--update, -u`: copy only when the SOURCE file is newer than the destination file or when the destination file is missing - `--progress, -p`: display a progress bar - `--no-clobber, -n`: do not overwrite an existing file - - `--preserve, - {list}`: preserve only the specified attributes (empty list means no attributes preserved) + - `--preserve {list}`: preserve only the specified attributes (empty list means no attributes preserved) if not specified only mode is preserved possible values: mode, ownership (unix only), timestamps, context, link, links, xattr - - `--debug, -`: explain how a file is copied. Implies -v + - `--debug`: explain how a file is copied. Implies -v ## Parameters diff --git a/commands/docs/decode_base32.md b/commands/docs/decode_base32.md index ea3ab91483c..b7b78e90283 100644 --- a/commands/docs/decode_base32.md +++ b/commands/docs/decode_base32.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--nopad, -`: Do not pad the output. + - `--nopad`: Do not pad the output. ## Input/output types: diff --git a/commands/docs/decode_base32hex.md b/commands/docs/decode_base32hex.md index 528790cd6de..5acb5a1793b 100644 --- a/commands/docs/decode_base32hex.md +++ b/commands/docs/decode_base32hex.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--nopad, -`: Reject input with padding. + - `--nopad`: Reject input with padding. ## Input/output types: diff --git a/commands/docs/decode_base64.md b/commands/docs/decode_base64.md index d1f20df143c..527ef3e20ac 100644 --- a/commands/docs/decode_base64.md +++ b/commands/docs/decode_base64.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--url, -`: Decode the URL-safe Base64 version. - - `--nopad, -`: Reject padding. + - `--url`: Decode the URL-safe Base64 version. + - `--nopad`: Reject padding. ## Input/output types: diff --git a/commands/docs/def.md b/commands/docs/def.md index 3ab44494109..c7a31648101 100644 --- a/commands/docs/def.md +++ b/commands/docs/def.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--env, -`: keep the environment defined inside the command - - `--wrapped, -`: treat unknown flags and arguments as strings (requires ...rest-like parameter in signature) + - `--env`: keep the environment defined inside the command + - `--wrapped`: treat unknown flags and arguments as strings (requires ...rest-like parameter in signature) ## Parameters diff --git a/commands/docs/detect_columns.md b/commands/docs/detect_columns.md index 8d30fc3a120..9aed04aa6b9 100644 --- a/commands/docs/detect_columns.md +++ b/commands/docs/detect_columns.md @@ -23,7 +23,7 @@ usage: | - `--skip, -s {int}`: number of rows to skip before detecting - `--no-headers, -n`: don't detect headers - `--combine-columns, -c {range}`: columns to be combined; listed as a range - - `--guess, -`: detect columns by guessing width, it may be useful if default one doesn't work + - `--guess`: detect columns by guessing width, it may be useful if default one doesn't work ## Input/output types: diff --git a/commands/docs/do.md b/commands/docs/do.md index d6facd4e293..cf4303b46fa 100644 --- a/commands/docs/do.md +++ b/commands/docs/do.md @@ -24,7 +24,7 @@ usage: | - `--ignore-shell-errors, -s`: ignore shell errors as the closure runs - `--ignore-program-errors, -p`: ignore external program errors as the closure runs - `--capture-errors, -c`: catch errors as the closure runs, and return them - - `--env, -`: keep the environment defined inside the command + - `--env`: keep the environment defined inside the command ## Parameters diff --git a/commands/docs/encode_base32.md b/commands/docs/encode_base32.md index eadf695ae99..d848b53b711 100644 --- a/commands/docs/encode_base32.md +++ b/commands/docs/encode_base32.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--nopad, -`: Don't accept padding. + - `--nopad`: Don't accept padding. ## Input/output types: diff --git a/commands/docs/encode_base32hex.md b/commands/docs/encode_base32hex.md index f5b975b5de1..1cc0ea90a0b 100644 --- a/commands/docs/encode_base32hex.md +++ b/commands/docs/encode_base32hex.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--nopad, -`: Don't pad the output. + - `--nopad`: Don't pad the output. ## Input/output types: diff --git a/commands/docs/encode_base64.md b/commands/docs/encode_base64.md index 5080a213a41..81950becce4 100644 --- a/commands/docs/encode_base64.md +++ b/commands/docs/encode_base64.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--url, -`: Use the URL-safe Base64 version. - - `--nopad, -`: Don't pad the output. + - `--url`: Use the URL-safe Base64 version. + - `--nopad`: Don't pad the output. ## Input/output types: diff --git a/commands/docs/encode_hex.md b/commands/docs/encode_hex.md index c68c1c4b868..5c06c5586cc 100644 --- a/commands/docs/encode_hex.md +++ b/commands/docs/encode_hex.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--lower, -`: Encode to lowercase hex. + - `--lower`: Encode to lowercase hex. ## Input/output types: diff --git a/commands/docs/explore.md b/commands/docs/explore.md index d1b4a422e5b..04ae758c730 100644 --- a/commands/docs/explore.md +++ b/commands/docs/explore.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--head, - {bool}`: Show or hide column headers (default true) + - `--head {bool}`: Show or hide column headers (default true) - `--index, -i`: Show row indexes when viewing a list - `--tail, -t`: Start with the viewport scrolled to the bottom - `--peek, -p`: When quitting, output the value of the cell the cursor was on diff --git a/commands/docs/export_def.md b/commands/docs/export_def.md index ccf8c5fdaeb..f51ecb981ec 100644 --- a/commands/docs/export_def.md +++ b/commands/docs/export_def.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--env, -`: keep the environment defined inside the command - - `--wrapped, -`: treat unknown flags and arguments as strings (requires ...rest-like parameter in signature) + - `--env`: keep the environment defined inside the command + - `--wrapped`: treat unknown flags and arguments as strings (requires ...rest-like parameter in signature) ## Parameters diff --git a/commands/docs/from_csv.md b/commands/docs/from_csv.md index 06dc1f08c79..2581535eb34 100644 --- a/commands/docs/from_csv.md +++ b/commands/docs/from_csv.md @@ -25,8 +25,8 @@ usage: | - `--quote, -q {string}`: a quote character to ignore separators in strings, defaults to '"' - `--escape, -e {string}`: an escape character for strings containing the quote character - `--noheaders, -n`: don't treat the first row as column names - - `--flexible, -`: allow the number of fields in records to be variable - - `--no-infer, -`: no field type inferencing + - `--flexible`: allow the number of fields in records to be variable + - `--no-infer`: no field type inferencing - `--trim, -t {string}`: drop leading and trailing whitespaces around headers names and/or field values diff --git a/commands/docs/from_msgpack.md b/commands/docs/from_msgpack.md index 37d7376c707..5f58a5a0c0a 100644 --- a/commands/docs/from_msgpack.md +++ b/commands/docs/from_msgpack.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--objects, -`: Read multiple objects from input + - `--objects`: Read multiple objects from input ## Input/output types: diff --git a/commands/docs/from_msgpackz.md b/commands/docs/from_msgpackz.md index bd4d01091fb..43a53a476d4 100644 --- a/commands/docs/from_msgpackz.md +++ b/commands/docs/from_msgpackz.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--objects, -`: Read multiple objects from input + - `--objects`: Read multiple objects from input ## Input/output types: diff --git a/commands/docs/from_tsv.md b/commands/docs/from_tsv.md index 0ca89a7e502..67e4cd5fa00 100644 --- a/commands/docs/from_tsv.md +++ b/commands/docs/from_tsv.md @@ -24,8 +24,8 @@ usage: | - `--quote, -q {string}`: a quote character to ignore separators in strings, defaults to '"' - `--escape, -e {string}`: an escape character for strings containing the quote character - `--noheaders, -n`: don't treat the first row as column names - - `--flexible, -`: allow the number of fields in records to be variable - - `--no-infer, -`: no field type inferencing + - `--flexible`: allow the number of fields in records to be variable + - `--no-infer`: no field type inferencing - `--trim, -t {string}`: drop leading and trailing whitespaces around headers names and/or field values diff --git a/commands/docs/from_xml.md b/commands/docs/from_xml.md index 248bd7d8058..971cdfca8d0 100644 --- a/commands/docs/from_xml.md +++ b/commands/docs/from_xml.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--keep-comments, -`: add comment nodes to result - - `--keep-pi, -`: add processing instruction nodes to result + - `--keep-comments`: add comment nodes to result + - `--keep-pi`: add processing instruction nodes to result ## Input/output types: diff --git a/commands/docs/group-by.md b/commands/docs/group-by.md index b9cfd0f13db..bf8892fa102 100644 --- a/commands/docs/group-by.md +++ b/commands/docs/group-by.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--to-table, -`: Return a table with "groups" and "items" columns + - `--to-table`: Return a table with "groups" and "items" columns ## Parameters diff --git a/commands/docs/into_datetime.md b/commands/docs/into_datetime.md index 945758ca272..21191d626b3 100644 --- a/commands/docs/into_datetime.md +++ b/commands/docs/into_datetime.md @@ -63,7 +63,7 @@ Sat, 27 Feb 2021 13:55:40 +0000 (3 years ago) Convert non-standard timestamp string, without timezone offset, to datetime with custom formatting ```nu > '16.11.1984 8:00 am' | into datetime --format '%d.%m.%Y %H:%M %P' -Fri, 16 Nov 1984 08:00:00 +0800 (40 years ago) +Fri, 16 Nov 1984 08:00:00 +0000 (40 years ago) ``` Convert nanosecond-precision unix timestamp to a datetime with offset from UTC @@ -84,7 +84,7 @@ Convert list of timestamps to datetimes ╭───┬─────────────╮ │ 0 │ 2 years ago │ │ 1 │ 2 years ago │ -│ 2 │ a year ago │ +│ 2 │ 2 years ago │ ╰───┴─────────────╯ ``` diff --git a/commands/docs/mktemp.md b/commands/docs/mktemp.md index 13c292cbba9..867ea2857b9 100644 --- a/commands/docs/mktemp.md +++ b/commands/docs/mktemp.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--suffix, - {string}`: Append suffix to template; must not contain a slash. + - `--suffix {string}`: Append suffix to template; must not contain a slash. - `--tmpdir-path, -p {path}`: Interpret TEMPLATE relative to tmpdir-path. If tmpdir-path is not set use $TMPDIR - `--tmpdir, -t`: Interpret TEMPLATE relative to the system temporary directory. - `--directory, -d`: Create a directory instead of a file. diff --git a/commands/docs/move.md b/commands/docs/move.md index f5ae5c05005..849449c7035 100644 --- a/commands/docs/move.md +++ b/commands/docs/move.md @@ -20,8 +20,8 @@ usage: | ## Flags - - `--after, - {string}`: the column that will precede the columns moved - - `--before, - {string}`: the column that will be the next after the columns moved + - `--after {string}`: the column that will precede the columns moved + - `--before {string}`: the column that will be the next after the columns moved ## Parameters diff --git a/commands/docs/plugin_add.md b/commands/docs/plugin_add.md index e40ce500906..a1138f0e984 100644 --- a/commands/docs/plugin_add.md +++ b/commands/docs/plugin_add.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--plugin-config, - {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` + - `--plugin-config {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` - `--shell, -s {path}`: Use an additional shell program (cmd, sh, python, etc.) to run the plugin ## Parameters diff --git a/commands/docs/plugin_list.md b/commands/docs/plugin_list.md index d32b1c68b2a..7acd9eba370 100644 --- a/commands/docs/plugin_list.md +++ b/commands/docs/plugin_list.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--plugin-config, - {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` + - `--plugin-config {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` - `--engine, -e`: Show info for plugins that are loaded into the engine only. - `--registry, -r`: Show info for plugins from the registry file only. diff --git a/commands/docs/plugin_rm.md b/commands/docs/plugin_rm.md index 56479928e91..ee103685aff 100644 --- a/commands/docs/plugin_rm.md +++ b/commands/docs/plugin_rm.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--plugin-config, - {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` + - `--plugin-config {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` - `--force, -f`: Don't cause an error if the plugin name wasn't found in the file ## Parameters diff --git a/commands/docs/plugin_use.md b/commands/docs/plugin_use.md index b56f14c411f..57916daba96 100644 --- a/commands/docs/plugin_use.md +++ b/commands/docs/plugin_use.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--plugin-config, - {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` + - `--plugin-config {path}`: Use a plugin registry file other than the one set in `$nu.plugin-path` ## Parameters diff --git a/commands/docs/polars_concat.md b/commands/docs/polars_concat.md index b4df5673539..45b495714bd 100644 --- a/commands/docs/polars_concat.md +++ b/commands/docs/polars_concat.md @@ -27,11 +27,11 @@ See the [Plugins](/book/plugins.html) chapter in the book for more information. ## Flags - - `--no-parallel, -`: Disable parallel execution - - `--rechunk, -`: Rechunk the resulting dataframe - - `--to-supertypes, -`: Cast to supertypes - - `--diagonal, -`: Concatenate dataframes diagonally - - `--from-partitioned-ds, -`: Concatenate dataframes from a partitioned dataset + - `--no-parallel`: Disable parallel execution + - `--rechunk`: Rechunk the resulting dataframe + - `--to-supertypes`: Cast to supertypes + - `--diagonal`: Concatenate dataframes diagonally + - `--from-partitioned-ds`: Concatenate dataframes from a partitioned dataset ## Parameters diff --git a/commands/docs/polars_open.md b/commands/docs/polars_open.md index 07356ad81ac..a1c91ccb3e6 100644 --- a/commands/docs/polars_open.md +++ b/commands/docs/polars_open.md @@ -27,15 +27,15 @@ See the [Plugins](/book/plugins.html) chapter in the book for more information. ## Flags - - `--eager, -`: Open dataframe as an eager dataframe + - `--eager`: Open dataframe as an eager dataframe - `--type, -t {string}`: File type: csv, tsv, json, parquet, arrow, avro. If omitted, derive from file extension - `--delimiter, -d {string}`: file delimiter character. CSV file - - `--no-header, -`: Indicates if file doesn't have header. CSV file - - `--infer-schema, - {number}`: Number of rows to infer the schema of the file. CSV file - - `--skip-rows, - {number}`: Number of rows to skip from file. CSV file - - `--columns, - {list}`: Columns to be selected from csv file. CSV and Parquet file + - `--no-header`: Indicates if file doesn't have header. CSV file + - `--infer-schema {number}`: Number of rows to infer the schema of the file. CSV file + - `--skip-rows {number}`: Number of rows to skip from file. CSV file + - `--columns {list}`: Columns to be selected from csv file. CSV and Parquet file - `--schema, -s {record}`: Polars Schema in format [{name: str}]. CSV, JSON, and JSONL files - - `--truncate-ragged-lines, -`: Truncate lines that are longer than the schema. CSV file + - `--truncate-ragged-lines`: Truncate lines that are longer than the schema. CSV file ## Parameters diff --git a/commands/docs/polars_profile.md b/commands/docs/polars_profile.md index b61581f73db..99ce7f3ab74 100644 --- a/commands/docs/polars_profile.md +++ b/commands/docs/polars_profile.md @@ -6,11 +6,11 @@ version: 0.100.0 dataframe: | Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed. - The units of the timings are microseconds. +The units of the timings are microseconds. usage: | Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed. - The units of the timings are microseconds. +The units of the timings are microseconds. --- diff --git a/commands/docs/polars_save.md b/commands/docs/polars_save.md index 789f75ef3a0..15a60e0d7ea 100644 --- a/commands/docs/polars_save.md +++ b/commands/docs/polars_save.md @@ -28,9 +28,9 @@ See the [Plugins](/book/plugins.html) chapter in the book for more information. ## Flags - `--type, -t {string}`: File type: csv, json, parquet, arrow/ipc. If omitted, derive from file extension - - `--avro-compression, - {string}`: Compression for avro supports deflate or snappy - - `--csv-delimiter, - {string}`: file delimiter character - - `--csv-no-header, -`: Indicates to exclude a header row for CSV files. + - `--avro-compression {string}`: Compression for avro supports deflate or snappy + - `--csv-delimiter {string}`: file delimiter character + - `--csv-no-header`: Indicates to exclude a header row for CSV files. ## Parameters diff --git a/commands/docs/rotate.md b/commands/docs/rotate.md index bfefac406e6..b394843f6fa 100644 --- a/commands/docs/rotate.md +++ b/commands/docs/rotate.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--ccw, -`: rotate counter clockwise + - `--ccw`: rotate counter clockwise ## Parameters diff --git a/commands/docs/str_expand.md b/commands/docs/str_expand.md index 3fa1994de36..7ca9115540d 100644 --- a/commands/docs/str_expand.md +++ b/commands/docs/str_expand.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--path, -`: Replaces all backslashes with double backslashes, useful for Path. + - `--path`: Replaces all backslashes with double backslashes, useful for Path. ## Input/output types: diff --git a/commands/docs/table.md b/commands/docs/table.md index d9352b410ce..83ef33d26aa 100644 --- a/commands/docs/table.md +++ b/commands/docs/table.md @@ -25,8 +25,8 @@ usage: | - `--width, -w {int}`: number of terminal columns wide (not output columns) - `--expand, -e`: expand the table structure in a light mode - `--expand-deep, -d {int}`: an expand limit of recursion which will take place, must be used with --expand - - `--flatten, -`: Flatten simple arrays - - `--flatten-separator, - {string}`: sets a separator when 'flatten' used + - `--flatten`: Flatten simple arrays + - `--flatten-separator {string}`: sets a separator when 'flatten' used - `--collapse, -c`: expand the table structure in collapse mode. Be aware collapse mode currently doesn't support width control - `--abbreviated, -a {int}`: abbreviate the data in the table by truncating the middle part and only showing amount provided on top and bottom diff --git a/commands/docs/to_csv.md b/commands/docs/to_csv.md index 5d2b31a7db2..2948bf77bf1 100644 --- a/commands/docs/to_csv.md +++ b/commands/docs/to_csv.md @@ -22,7 +22,7 @@ usage: | - `--separator, -s {string}`: a character to separate columns, defaults to ',' - `--noheaders, -n`: do not output the columns names as the first row - - `--columns, - {list}`: the names (in order) of the columns to use + - `--columns {list}`: the names (in order) of the columns to use ## Input/output types: diff --git a/commands/docs/to_tsv.md b/commands/docs/to_tsv.md index f10e408cc95..b374c58043c 100644 --- a/commands/docs/to_tsv.md +++ b/commands/docs/to_tsv.md @@ -21,7 +21,7 @@ usage: | ## Flags - `--noheaders, -n`: do not output the column names as the first row - - `--columns, - {list}`: the names (in order) of the columns to use + - `--columns {list}`: the names (in order) of the columns to use ## Input/output types: diff --git a/commands/docs/ulimit.md b/commands/docs/ulimit.md index 876fafab16d..44960660480 100644 --- a/commands/docs/ulimit.md +++ b/commands/docs/ulimit.md @@ -25,11 +25,20 @@ usage: | - `--all, -a`: Prints all current limits - `--core-size, -c`: Maximum size of core files created - `--data-size, -d`: Maximum size of a process's data segment + - `--nice, -e`: Controls of maximum nice priority - `--file-size, -f`: Maximum size of files created by the shell + - `--pending-signals, -i`: Maximum number of pending signals + - `--lock-size, -l`: Maximum size that may be locked into memory + - `--resident-set-size, -m`: Maximum resident set size - `--file-descriptor-count, -n`: Maximum number of open file descriptors + - `--queue-size, -q`: Maximum bytes in POSIX message queues + - `--realtime-priority, -r`: Maximum realtime scheduling priority - `--stack-size, -s`: Maximum stack size - `--cpu-time, -t`: Maximum amount of CPU time in seconds + - `--process-count, -u`: Maximum number of processes available to the current user - `--virtual-memory-size, -v`: Maximum amount of virtual memory available to each process + - `--file-locks, -x`: Maximum number of file locks + - `--realtime-maxtime, -y`: Maximum contiguous realtime CPU time ## Parameters