10

操作系统是 Ubuntu。我想file.txt/home/z/Desktop文件内容所在的位置创建some text here

第一种也是常用的方法是运行nano /home/z/Desktop/file.txt并键入some text here。之后,按ctrl+xy然后按Enter

第二种方式是运行cat > /home/z/Desktop/file.txt,输入并some text here按下Enterctrl+c

我希望我可以运行单行命令以使其更快。我认为xdotool可以使用cat(第二种方式),但不,它不起作用

4

1 回答 1

16

您可以"echo"在 bash 中使用。例如:

echo "some text here" > file.txt

如果您不想在文件末尾出现换行符,请使用以下-n参数:

echo -n "some text here" > file.txt
于 2012-04-12T05:07:18.043 回答