mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
matlab, powershell: add Chinese translation (#4743)
This commit is contained in:
parent
505f8016f5
commit
e46977260b
2 changed files with 48 additions and 0 deletions
16
pages.zh/common/matlab.md
Normal file
16
pages.zh/common/matlab.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# matlab
|
||||
|
||||
> MathWorks 制作的数值计算环境。
|
||||
> 更多信息: <https://uk.mathworks.com/help/matlab/>.
|
||||
|
||||
- 在启动过程中,运行时不出现闪屏:
|
||||
|
||||
`matlab -nosplash`
|
||||
|
||||
- 执行 MATLAB 语句:
|
||||
|
||||
`matlab -r "{{matlab_语句}}"`
|
||||
|
||||
- 运行 MATLAB 脚本:
|
||||
|
||||
`matlab -r "run({{路径/script.m}})"`
|
32
pages.zh/windows/powershell.md
Normal file
32
pages.zh/windows/powershell.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# powershell
|
||||
|
||||
> 专为系统管理而设计的命令行 shell 和脚本语言.
|
||||
> 更多信息: <https://docs.microsoft.com/windows-server/administration/windows-commands/powershell>.
|
||||
|
||||
- 在命令提示符窗口中启动 Windows PowerShell 会话:
|
||||
|
||||
`powershell`
|
||||
|
||||
- 加载一个特定的 PowerShell 控制台文件:
|
||||
|
||||
`powershell -PSConsoleFile {{路径/file}}`
|
||||
|
||||
- 用指定版本的 PowerShell 启动会话:
|
||||
|
||||
`powershell -Version {{版本}}`
|
||||
|
||||
- 防止运行启动命令后 shell 退出:
|
||||
|
||||
`powershell -NoExit`
|
||||
|
||||
- 描述发送到 PowerShell 的数据格式:
|
||||
|
||||
`powershell -InputFormat {{Text|XML}}`
|
||||
|
||||
- 设定 PowerShell 输出的格式:
|
||||
|
||||
`powershell -OutputFormat {{Text|XML}}`
|
||||
|
||||
- 显示帮助:
|
||||
|
||||
`powershell -Help`
|
Loading…
Add table
Reference in a new issue