Dan*_*i_l 10
使用的组合cat和tr:
cat FILEX FILEY | tr '[:upper:]' '[:lower:]' > FILEXY
使用的组合cat和dd:
cat LIST_OF_FILES | dd of=OUTPUT_FILE conv=lcase
Run Code Online (Sandbox Code Playgroud)
一个例子:
$ 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!
Run Code Online (Sandbox Code Playgroud)