当前位置: 技术问答>linux和unix
写一个最简单的shell程序 cd home/test
来源: 互联网 发布时间:2017-04-08
本文导语: 新建了一个文件a,里面写了一句 cd home/a 保存退出后,在本目录下, ./a 想运行这个shell程序,但失败了 bash: ./a: Permission denied 怎么回事? | #!/bin/bash #This script is a test! echo -n "Date and Time is:" date ec...
新建了一个文件a,里面写了一句
保存退出后,在本目录下, ./a 想运行这个shell程序,但失败了
怎么回事?
cd home/a
保存退出后,在本目录下, ./a 想运行这个shell程序,但失败了
bash: ./a: Permission denied
怎么回事?
|
#!/bin/bash
#This script is a test!
echo -n "Date and Time is:"
date
echo "The executable path is:"$PATH
echo "Your name is :`whoami`"
echo -n "Your current directory is:"
pwd
#end