잡다한것들

랜덤하게 파일 이동, 복사

봄다온 2025. 6. 25. 11:25
#이동
cd /path/to/a && \
find . -maxdepth 1 -type f | shuf -n 700 | while read file; do mv "$file" /path/to/b/; done

#복사
cd /path/to/a && \
find . -maxdepth 1 -type f | shuf -n 700 | rsync --files-from=- -av ./ /path/to/b/