디렉토리와 모든 서브 디렉토리에서 파일 유형을 이동하는 좋은 방법은 무엇입니까?
"/ thisdir의 모든 * .ogg를 재귀 적으로 / somedir로 이동"과 같이. 나는 몇 가지를 시도했다; 나의 최선의 노력은 (여전히 그렇게 크지는 않았다) :
find /thisdir -type f -name '*.ogg' -exec mv /somedir {} \;
각 파일 이름 앞에 각 줄에 반환되었습니다.
mv: cannot overwrite non-directory `/thisdir/*.ogg' with directory `/somedir'