引用工作目录中的目录
Refer to a directory in your working directory
我正在使用名为 QIIME
的程序开发 Mac 终端。但是,我的问题更多地与终端中的基本导航有关。
当我输入命令时,想引用位于我当前工作目录中的 directory/map 中的文件,我该怎么做?
例如:
convert_fastaqual_fastq.py -f sequenceA.fastq
现在 sequenceA 位于我工作目录的映射中,所以我想我必须在 sequenceA.qual
之前添加参数,或者我不应该吗?
从您的工作目录中,您应该能够通过以下方式访问该文件:
the_directory_your_file_is_in/sequenceA.qual
否则,您可以使用类似的东西:
./the_directory_your_file_is_in/sequenceA.qual
一个点代表您当前所在的目录。
../the-directory-you-are-in/the_directory_your_file_is_in/sequenceA.qual
两点代表当前目录的上一级目录。
我正在使用名为 QIIME
的程序开发 Mac 终端。但是,我的问题更多地与终端中的基本导航有关。
当我输入命令时,想引用位于我当前工作目录中的 directory/map 中的文件,我该怎么做?
例如:
convert_fastaqual_fastq.py -f sequenceA.fastq
现在 sequenceA 位于我工作目录的映射中,所以我想我必须在 sequenceA.qual
之前添加参数,或者我不应该吗?
从您的工作目录中,您应该能够通过以下方式访问该文件:
the_directory_your_file_is_in/sequenceA.qual
否则,您可以使用类似的东西:
./the_directory_your_file_is_in/sequenceA.qual
一个点代表您当前所在的目录。
../the-directory-you-are-in/the_directory_your_file_is_in/sequenceA.qual
两点代表当前目录的上一级目录。