文件夹名称作为参数

文件夹名称作为参数

作为包含如何运行说明的 txt 文件的一部分,我使用文件夹名称作为参数,如下所示。然而,LINUX 不识别它。我可能做错了什么?

foldername = "SOPHIE_TRANS"
matlab -nodesktop -nosplash -r "CellSort($foldername);quit"

答案1

您没有设置有效的变量。变量名、等号和变量值之间不能有空格。

尝试这样:

foldername="SOPHIE_TRANS"
matlab -nodesktop -nosplash -r "CellSort($foldername);quit"

相关内容