使用 python3 的批别名有什么问题
What is wrong with this batch alias using python3
我在这批别名中做错了什么:
alias youtube-dl=python3 /usr/local/bin/youtube-dl
您需要将 python 命令用单引号引起来:
alias youtube-dl = 'python3 /usr/local/bin/youtube-dl'
我在这批别名中做错了什么:
alias youtube-dl=python3 /usr/local/bin/youtube-dl
您需要将 python 命令用单引号引起来:
alias youtube-dl = 'python3 /usr/local/bin/youtube-dl'