Compare commits

...

4 Commits

Author SHA1 Message Date
Acetylsalicylsaeure f3d405a1e3
mopac: add page (#13122)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: spageektti <git@spageektti.cc>
2024-06-24 21:31:25 +02:00
Michael Hall 945af4bc70
sort: add multiple columns example (#13094) 2024-06-24 20:30:39 +02:00
Sebastiaan Speck 036f329b5b
alex, age-keygen, accelerate, airdecap-ng, airshare: fix link typo (#13123)
alex, age-keygen, accelerate, airdecap-ng, airshare: update link
2024-06-24 18:48:58 +02:00
Sebastiaan Speck 5579f8d082
git-add: update Dutch translation (#13124) 2024-06-24 14:59:44 +02:00
8 changed files with 25 additions and 9 deletions

View File

@ -11,6 +11,10 @@
`git add -A`
- Voeg alle bestanden toe in de huidige map:
`git add .`
- Voeg alleen al bijgehouden bestanden toe:
`git add -u`

View File

@ -1,7 +1,7 @@
# Accelerate
> 一个使得可以在任何分布式配置中运行相同的 PyTorch 代码的库。
> 更多信息: <https://huggingface.co/docs/accelerate/index>.
> 更多信息:<https://huggingface.co/docs/accelerate/index>.
- 打印环境信息:

View File

@ -2,7 +2,7 @@
> 生成 `age` 密钥对。
> 参见:`age` 用于加密/解密文件。
> 更多信息: <https://manned.org/age-keygen>.
> 更多信息:<https://manned.org/age-keygen>.
- 生成密钥对,将其保存到未加密文件,并将公钥打印到标准输出:

View File

@ -2,7 +2,7 @@
> 解密 WEP、WPA 或 WPA2 加密的捕获文件。
> 是 Aircrack-ng 网络软件套件的一部分。
> 更多信息: <https://www.aircrack-ng.org/doku.php?id=airdecap-ng>.
> 更多信息:<https://www.aircrack-ng.org/doku.php?id=airdecap-ng>.
- 从开放网络捕获文件中移除无线头,并使用接入点的 MAC 地址进行过滤:

View File

@ -1,7 +1,7 @@
# airshare
> 在本地网络中传输数据的工具。
> 更多信息: <https://airshare.rtfd.io/en/latest/cli.html>.
> 更多信息:<https://airshare.rtfd.io/en/latest/cli.html>.
- 共享文件或目录:

View File

@ -1,7 +1,7 @@
# alex
> 捕捉文本中的不敏感、不考虑他人的写作风格。它帮助您找出文本中的性别偏向、极端化、种族相关、宗教考虑不周等不平等表达。
> 更多信息: <https://github.com/get-alex/alex>.
> 更多信息:<https://github.com/get-alex/alex>.
- 从标准输入分析文本:

View File

@ -23,6 +23,10 @@
`sort --field-separator={{:}} --key={{3n}} {{/etc/passwd}}`
- As above, but when items in the 3rd field are equal, sort by the 4th field by numbers with exponents:
`sort -t {{:}} -k {{3,3n}} -k {{4,4g}} {{/etc/passwd}}`
- Sort a file preserving only unique lines:
`sort --unique {{path/to/file}}`
@ -30,7 +34,3 @@
- Sort a file, printing the output to the specified output file (can be used to sort a file in-place):
`sort --output={{path/to/file}} {{path/to/file}}`
- Sort numbers with exponents:
`sort --general-numeric-sort {{path/to/file}}`

12
pages/linux/mopac.md Normal file
View File

@ -0,0 +1,12 @@
# mopac
> MOPAC (Molecular Orbital PACkage) is a semiempirical quantum chemistry program based on Dewar and Thiel's NDDO approximation.
> More information: <https://github.com/openmopac/mopac>.
- Perform calculations according to an input file (`.mop`, `.dat`, and `.arc`):
`mopac {{path/to/input_file}}`
- Minimal working example with HF that writes to the current directory and streams the output file:
`touch test.out; echo "PM7\n#comment\n\nH 0.95506 0.05781 -0.03133\nF 1.89426 0.05781 -0.03133" > test.mop; mopac test.mop & tail -f test.out`