复制文件 X 和 Y 中的内容以创建文件 XY 但 XY 内容全部小写

复制文件 X 和 Y 中的内容以创建文件 XY 但 XY 内容全部小写

X从文件和文件复制内容以创建所有字母均为小写的Y新文件的正确命令是什么?XY

答案1

cat使用和的组合tr

cat FILEX FILEY | tr '[:upper:]' '[:lower:]' > FILEXY

答案2

cat使用和的组合dd

cat LIST_OF_FILES | dd of=OUTPUT_FILE conv=lcase

一个例子:

$ cat file1.txt 
I am File 1.

$ cat file2.txt 
Here is File 2!

$ cat file1.txt file2.txt | dd of=file12.txt conv=lcase
0+1 records in
0+1 records out
29 bytes (29 B) copied, 0,000301417 s, 96,2 kB/s

$ cat file12.txt 
i am file 1.
here is file 2!

答案3

<old_file tr 'A-Z' 'a-z' > new_file

相关内容