prefetch SRR1039523^M -o /home/rmj/project/Asthma/data/rawdata/sra/ 在文本的中间出现^M,^M是一种换行符,我们需要将去去除,此时我们需要使用到sed命令。正确命令如下: sed -i 's/\r/ /g'txt.txt 该命令使用sed命令将文件中的所有^M替换为空格,并通过-i选项将更改保存回原始文件。 注意:在Linux中,...
linux_sed&tr_将所有空白符(空格/回车换行符/制表符/…)替换为指定字符/多个连续的空格转为一个空格 references linux - Can tr work with regex? - Unix & Linux Stack Exchange 简单替换可以用tr快速处理 tris for transliteration. One popular use oftris change the case of strings: 将文本转换为大写 $...
- Unix & Linux Stack Exchange 简单替换可以用tr快速处理 tr is for transliteration. One popular use oftr is change the case of strings: 将文本转换为大写 $ echo 'this is a test' | tr a-z A-Z THIS IS A TEST 1. 2. 测试文本 将下面的文本写入...