嗨,这是我第一次写bash,我正在尝试创建一个bash脚本,并尝试执行以下操作:
我已经陷入了第一步:
#!/bin/bash
cd
if [ -d ./project ]
then
echo hi it exists!
else
echo it doesn't exist!
cd project/
如果有人可以提供帮助,我将不胜感激!非常感谢你!
答案 0 :(得分:-1)
您可以使用<cfcomponent rest="true"
restpath="/users">
<cffunction name="saveProfilePicture"
access="remote"
httpmethod="POST"
restpath="{userid}/profilePicture"
returntype="any">
<cfargument name="uploadedImage" restargsource="form"/>
<cfargument name="userid" restargsource="Path"/>
<cffile
action="upload"
destination="#upload_path#"
result="arguments.uploadedImage"
accept="image/jpg,image/jpeg"
/>
</cffunction>
</cfcomponent>
环境变量。 Bash还将代字号($HOME
)识别为家。
答案 1 :(得分:-1)
cd本身将当前工作目录更改为主目录。 有关此命令的其他用法,请参阅man cd。