如何使用 Python 在 Ubuntu 中创建自己的命令

How to create own command in Ubuntu using Python

我可以使用 Python、ls, cp 等在 Ubuntu 中创建自己的命令吗?

我试过下面的代码

我的 Python 脚本是:

 #! /usr/bin/python3
print('Hello, World!')
  • 删除 # 之间的 space! /usr/ i,e #!/usr/
  • 重命名hello.py 你好