mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
9671d9c337
Co-authored-by: DustMerlin <39292795+DustMerlin@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
316 B
316 B
source
在当前 Shell 中执行来自文件的命令。 更多信息:https://www.gnu.org/software/bash/manual/bash.html#index-source。
- 执行指定文件中的内容:
source {{路径/到/文件}}
- 执行指定文件中的内容(也可以用
.替代source):
. {{路径/到/文件}}