LINUX下shell 如何将文件夹下的所有txt文件输出到一个txt文件下去

我写了个命令(try):find /home/public/text/data .-name *.txt -exec awk -F "~" '{print $0}'>all.txt {} \; 但是会提示(find: .-name:没有那个文件或目录 find:*.txt:没有那个文件或目录) 当我再次执行./try时会停留很长时间 然后all.txt数据会增加到1G以上的数据 请问我写的命令哪里有错吗? 请高手指点

第1个回答  2019-06-10
find
后跟了目录
就不要再加.了
find
格式:
find
起始目录
-name
*.txt
....
相似回答
大家正在搜