How do I alias a command line command? (Mac)(如何给命令行命令起别名?(苹果电脑))
问题描述
I'm on a mac, and I write quite a bit of python scripts.
Every time I need to run them, I have to type 'python script_name.py
'. Is there I way to make it so I only have to type like 'p script_name.py
'? It would save some time :D
I am assuming you are running your script from the command line right? If so, add the following line as the first line in your script:
#!/usr/bin/python
or alternatively
#!/usr/bin/env python
in case the python command is not located in /usr/bin
, and then issue the following command once at the Unix/terminal prompt (it makes your script "executable"):
chmod +x script_name.py
from then on you only need to type the name of the script at the command prompt to run it. No python
part of the command needed. I.e., simply
./script_name.py
will run the script.
You can also of course go with the alias
, but the above is a cleaner solution in my opinion.
For the alias
alias p="python"
should go into your ~/.bashrc
file
这篇关于如何给命令行命令起别名?(苹果电脑)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何给命令行命令起别名?(苹果电脑)


基础教程推荐
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01