請教rsync如何只備份某目錄下「檔案」,不備份子目錄嗎?
ex:
/path1/ABC/file1
/path1/ABC/file2
/path1/ABC/file3
/path1/ABC/.hide_file_name4
/path1/ABC/folder5
/path1/ABC/folder6
想 rsync copy 完整備份 file1/2/3/.hide_file_name4 到同一個檔案系統中的
/path2/CDE/file1
/path2/CDE/file2
/path2/CDE/file3
/path2/CDE/.hide_file_name4
但是不備份 folder5/6
請問指令要怎麼下呢?或是有除了 rsync 外,可以在 background 跑的方法?
cp -p * 好像可以不 copy folder , 可是會一直要等輸入 yes 確認不要 copy folder...XD