Linux
隱藏目錄上的 Bash shell 複製文件
需要有關 Unix 腳本的幫助。
如何使用 /bin/cp 將文件從 /somepath/somedir/somewhere/.temp_folder 複製到 /somepath/somedir/somewhere/
我的線
/bin/cp -r somepath/somedir/somewhere/.[!.]* somepath/somedir/somewhere/
目錄**.temp_folder 已** 複製,但我只想複製文件
蒂亞!
find <path> -type f -exec cp {} <destination path> \;
這將只複製文件,覆蓋具有相同名稱的文件,並且目標目錄中不會有源目錄樹。