标签: shell sh ksh
我有一个打印数字的php文件,我想在我的ksh文件中使用这个数字,所以我这样做但是它没有用。
#!/bin/sh testt = $(php /path/to/count.php) echo $testt
我希望为testt变量分配数字值。
testt
答案 0 :(得分:2)
shell的标记生成器对空白区域敏感。使用
testt=$(php /path/to/count.php)
注意:=周围没有空白。
=