-bash: /bin/mv: Argument list too long

HeungJun Kim·2024년 4월 26일
0

디버깅

목록 보기
1/4

1. Shell 확장 제한 해제
일부 쉘은 파일 수가 많을 때 확장을 막는 경우가 있음.

ulimit -s unlimited

명령어를 사용하여 확장 제한을 해제할 수 있다.

2. find 명령 활용

find . -path "/labels/.txt" -type f -print0 | xargs -0 mv -t senario/

profile
Computer Vision / ADAS / DMS / Face Recognition

0개의 댓글