linux shell 输出helloworld

网友投稿 600 2022-05-30

ECS信息

规格:2vCPUs | 4GiB | kc1.large.2

镜像:openEuler 20.03 64bit with ARM | 公共镜像

Linux shell 输出helloworld

# vim hello.sh #!/bin/bash echo 'hello world' echo 'hello'

# bash hello.sh hello world hello

当前工作目录不在PATH变量中,所以command not found

# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin # pwd /home # hello.sh -bash: hello.sh: command not found

没有执行权限,所以Permission denied

# ./hello.sh -bash: ./hello.sh: Permission denied

# ll total 4.0K -rw------- 1 root root 44 Oct 3 16:39 hello.sh # chmod u+x hello.sh # ll total 4.0K -rwx------ 1 root root 44 Oct 3 16:39 hello.sh

# ./hello.sh hello world hello

学习资料

弹性云服务器 ECS

openEuler-官网

openEuler-B站

openEuler-慕课

linux shell 输出helloworld

openEuler-文档

鲲鹏社区

欢迎各位同学一起来交流学习心得^_^

Linux openEuler Shell

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Python dict 取值时推荐使用get方法
下一篇:Android之用Intent.FLAG_ACTIVITY_CLEAR_TOP解决界面重复拉起问题
相关文章