Apply suggestions from code review

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
manned-org
marchersimon 2021-03-31 17:41:16 +02:00 committed by Starbeamrainbowlabs
parent 3c2cf70053
commit 9eb6123786
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# apg
> 生成任意复杂度的随机密码.
> 更多信息: <https://manpages.debian.org/latest/apg/apg.1.html>.
> 更多信息: <https://manpages.debian.org/latest/apg/apg.1>.
- 生成随机密码 (默认密码长度为 8 位):

View File

@ -5,7 +5,7 @@
- Extract all members from an archive:
`ar -x {{path/to/archive.a}}`
`ar -x {{path/to/file.a}}`
- List the members of an archive:
@ -13,7 +13,7 @@
- Replace or add files to an archive:
`ar -r {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
`ar -r {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
- Insert an object file index (equivalent to using `ranlib`):
@ -21,4 +21,4 @@
- Create an archive with files and an accompanying object file index:
`ar -rs {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
`ar -rs {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}`