shell 脚本定义变量,command not found
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
shell脚本是我们在工作中经常会写的一个东西
一个新手小白或者是不懂linux的初学者可能觉得很难(我也是渣渣),编写的过程中总是遇到各种个样的错误
这里举例一个我遇到的问题,在shell中定义变量
#!/bin/bash
str = “I am string”
echo "$str"
执行该shell文件./a.sh 或者sh a.sh
会发现报错str:command not found
这是因为在shell脚本中等号两边不能有空余的空格(可能我们在其他变成语言中形成了一个习惯,等号两边总要留个空格使代码美化)
改成
#!/bin/bash
str="I am string"
echo "$str"
即可
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)