📌  相关文章
📜  运行源 linux 的替代命令 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:38.113000             🧑  作者: Mango

代码示例1
# Short answer:
# An alternative to sourcing a file with source (e.g.: source ~/.bashrc) 
# is to use the period (e.g.: . ~/.bashrc)

# Note, you might be tempted to make an alias for source like:
#    alias source='source ~/.bashrc' but it's probably better to use 
#     something like alias sourcebash='source ~/.bashrc' to avoid creating
#     problems for yourself.