试图在bash linux中使用“换行”命令复制语法

时间:2018-07-05 07:33:46

标签: linux bash terminal

尝试使用“新行”命令将语法复制到我的终端,如下所示:

  qiime tools import \
   --type EMPPairedEndSequences \
   --input-path emp-paired-end-sequences \
   --output-path emp-paired-end-sequences.qza

它把每一行都作为一个单独的命令,所以我必须将它们全部复制为单独的。

1 个答案:

答案 0 :(得分:1)

如果在反斜杠之后和换行符之前有空格(空格或制表符),则行继续将失败。没有这样的空格,您的示例对我来说很好用:

qiime tools import \
--type EMPPairedEndSequences \
--input-path emp-paired-end-sequences \
--output-path emp-paired-end-sequences.qza