把自己的脚本制作为一个命令:
1. 编写shell脚本并且 chmod +x test.sh
2. ln -s test.sh test
3. 在 ~/.bashrc 中加入 export PATH="/path/to/your/script:$PATH"
4. source ~/.bashrc
5. 然后全局就可以直接使用test abc了
6. PS a. /path/to/your/script(是自己的脚本的路径) b. 如果要删除ln -s的话直接使用rm test就可以了
把shell脚本配置为一个命令
Administrator
39
2024-08-07