mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-17 02:49:20 +00:00
Update cheatsheets
This commit is contained in:
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# parted
|
||||
|
||||
> A partition manipulation program.
|
||||
> See also: `partprobe`.
|
||||
> See also: `parted`, `partprobe`.
|
||||
> More information: <https://www.gnu.org/software/parted/parted.html>.
|
||||
|
||||
- Start interactive mode with the specified disk selected:
|
||||
|
||||
@@ -8,26 +8,30 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
> Query the user for a system password.
|
||||
> More information: <https://www.freedesktop.org/software/systemd/man/systemd-ask-password.html>.
|
||||
|
||||
- Query a system password with a specific message:
|
||||
- Query a system password with a specific prompt:
|
||||
|
||||
`systemd-ask-password "{{message}}"`
|
||||
`systemd-ask-password "{{prompt}}"`
|
||||
|
||||
- Specify an identifier for the password query:
|
||||
|
||||
`systemd-ask-password --id={{identifier}} "{{message}}"`
|
||||
`systemd-ask-password --id {{identifier}} "{{prompt}}"`
|
||||
|
||||
- Use a kernel keyring key name as a cache for the password:
|
||||
|
||||
`systemd-ask-password --keyname={{key_name}} "{{message}}"`
|
||||
`systemd-ask-password --keyname {{key_name}} "{{prompt}}"`
|
||||
|
||||
- Set a custom timeout for the password query:
|
||||
|
||||
`systemd-ask-password --timeout={{seconds}} "{{message}}"`
|
||||
`systemd-ask-password --timeout {{seconds}} "{{prompt}}"`
|
||||
|
||||
- Force the use of an agent system and never ask on current TTY:
|
||||
|
||||
`systemd-ask-password --no-tty "{{message}}"`
|
||||
`systemd-ask-password --no-tty "{{prompt}}"`
|
||||
|
||||
- Store a password in the kernel keyring without displaying it:
|
||||
|
||||
`systemd-ask-password --no-output --keyname={{key_name}} "{{message}}"`
|
||||
`systemd-ask-password --no-output --keyname {{key_name}} "{{prompt}}"`
|
||||
|
||||
- Pass the asked password to another program:
|
||||
|
||||
`systemd-ask-password | {{command}}`
|
||||
|
||||
Reference in New Issue
Block a user