命令:tail file.txt'

时间:2017-05-13 07:57:31

标签: linux bash ubuntu debian

首先,一个linux新手。

我写错了,我不知道我走进了什么,文档无济于事。

截屏: enter image description here

运行

man tail

遗憾的是也没有提供帮助。

这个命令在做什么?

使用ctrl + C退出

1 个答案:

答案 0 :(得分:1)

撇号(')与tail命令无关。它的真正功能是允许您在命令中插入多行文本。

import com.mathworks.engine.*;

public class MatlabTest {

public static void main(String[] args) throws Exception {

MatlabEngine mtlb = MatlabEngine.startMatlab();

double[] vals = {2.0, 3.0, 5.0};

double[] ans = mtlb.feval("javaTest", vals);

for (double n: ans){
System.out.println(n);
}

mtlb.close();

}

}

不要忘记在末尾添加一个撇号来包含文本。