如何使 AIX shell 脚本可执行?
我编写了一个简单的 shell 脚本,可以像这样运行
$ksh script1
但我不知道如何执行它。就像
$script1
谢谢。
I write a simple shell script which could be run like this
$ksh script1
But i donn't know how to execute it.Like
$script1
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需执行以下操作即可:
不建议添加“。” 由于安全原因,请添加到您的 PATH 环境变量。
Just do the following:
It's not recommended to add "." to your PATH environment variable due to security reasons.
不确定它是否在 AIX 上工作,但在 Linux 上,您可以说 chmod +x script.sh 使其可以使用脚本目录中的 ./script.sh 或使用 /the/full/path/to/script.sh (如果脚本不在系统路径中)
Not sure if it works on AIX but on Linux you can say chmod +x script.sh to make it executable using ./script.sh in the script's directory or using /the/full/path/to/script.sh (if the script isn't in the system path)
使其可执行
使其可从系统中的任何文件夹调用
使其只能从 script.sh 文件夹调用
to make it executable
to make it callable from any folder in the system
to make it callable only from script.sh folder