mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-23 07:59:54 -05:00
Add keepassxc man page and move cli man page to share folder (#3665)
This commit is contained in:
parent
8c8c181f73
commit
ebc006c4b9
@ -22,7 +22,7 @@ so please check out your distribution's package list to see if KeePassXC is avai
|
|||||||
- YubiKey challenge-response support
|
- YubiKey challenge-response support
|
||||||
- TOTP generation
|
- TOTP generation
|
||||||
- CSV import
|
- CSV import
|
||||||
- A [Command Line Interface (keepassxc-cli)](./src/cli/keepassxc-cli.1)
|
- A [Command Line Interface (keepassxc-cli)](./share/docs/man/keepassxc-cli.1)
|
||||||
- DEP and ASLR hardening
|
- DEP and ASLR hardening
|
||||||
- Stand-alone password and passphrase generator
|
- Stand-alone password and passphrase generator
|
||||||
- Password strength meter
|
- Password strength meter
|
||||||
|
@ -6,7 +6,9 @@ keepassxc-cli \- command line interface for the \fBKeePassXC\fP password manager
|
|||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B keepassxc-cli
|
.B keepassxc-cli
|
||||||
.I command
|
.I command
|
||||||
.RI [ options ]
|
.B [
|
||||||
|
-I options
|
||||||
|
.B ]
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
\fBkeepassxc-cli\fP is the command line interface for the \fBKeePassXC\fP password manager. It provides the ability to query and modify the entries of a KeePass database, directly from the command line.
|
\fBkeepassxc-cli\fP is the command line interface for the \fBKeePassXC\fP password manager. It provides the ability to query and modify the entries of a KeePass database, directly from the command line.
|
39
share/docs/man/keepassxc.1
Normal file
39
share/docs/man/keepassxc.1
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
.TH KEEPASSXC 1 "Oct 25, 2019"
|
||||||
|
.SH NAME
|
||||||
|
keepassxc \- password manager
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B keepassxc
|
||||||
|
.B [
|
||||||
|
.I options
|
||||||
|
.B ] [
|
||||||
|
.I filename(s)
|
||||||
|
.B ]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
\fBKeePassXC\fP is a free/open-source password manager or safe which helps you to manage your passwords in a secure way. The complete database is always encrypted with the industry-standard AES (alias Rijndael) encryption algorithm using a 256 bit key. KeePassXC uses a database format that is compatible with KeePass Password Safe. Your wallet works offline and requires no Internet connection.
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.IP "-h, --help"
|
||||||
|
Displays this help.
|
||||||
|
|
||||||
|
.IP "-v, --version"
|
||||||
|
Displays version information.
|
||||||
|
|
||||||
|
.IP "--config <config>"
|
||||||
|
Path to a custom config file
|
||||||
|
|
||||||
|
.IP "--keyfile <keyfile>"
|
||||||
|
Key file of the database
|
||||||
|
|
||||||
|
.IP "--pw-stdin"
|
||||||
|
Read password of the database from stdin
|
||||||
|
|
||||||
|
.IP "--pw, --parent-window <handle>"
|
||||||
|
Parent window handle
|
||||||
|
|
||||||
|
.IP "--debug-info"
|
||||||
|
Displays debugging information.
|
||||||
|
|
||||||
|
.SH AUTHOR
|
||||||
|
This manual page is maintained by the KeePassXC Team <team@keepassxc.org>.
|
@ -389,6 +389,10 @@ install(TARGETS ${PROGNAME}
|
|||||||
BUNDLE DESTINATION . COMPONENT Runtime
|
BUNDLE DESTINATION . COMPONENT Runtime
|
||||||
RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime)
|
RUNTIME DESTINATION ${BIN_INSTALL_DIR} COMPONENT Runtime)
|
||||||
|
|
||||||
|
if(APPLE OR UNIX)
|
||||||
|
install(FILES ../share/docs/man/keepassxc.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(MINGW)
|
if(MINGW)
|
||||||
if(${CMAKE_SIZEOF_VOID_P} EQUAL "8")
|
if(${CMAKE_SIZEOF_VOID_P} EQUAL "8")
|
||||||
set(OUTPUT_FILE_POSTFIX "Win64")
|
set(OUTPUT_FILE_POSTFIX "Win64")
|
||||||
|
@ -119,5 +119,5 @@ if(APPLE AND WITH_APP_BUNDLE)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE OR UNIX)
|
if(APPLE OR UNIX)
|
||||||
install(FILES keepassxc-cli.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/)
|
install(FILES ../../share/docs/man/keepassxc-cli.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/)
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user