히비스서커스의 블로그

[Linux] 한번에 현재 경로 아래의 디렉토리 및 파일들 권한 변경해주기 (feat. -bash: /usr/bin/chown: Argument list too long ) 본문

Programming/Linux

[Linux] 한번에 현재 경로 아래의 디렉토리 및 파일들 권한 변경해주기 (feat. -bash: /usr/bin/chown: Argument list too long )

HibisCircus 2022. 3. 24. 17:06
728x90

https://servonode.com/chown-command-in-linux

 

상황

한번에 현재 경로 아래의 디렉토리 및 파일들 권한을 변경해주기 위해 아래와 같이 명령하였다.

 

 

실패한 코드

$ sudo chown user:user */*/*

 

 

에러메시지

-bash: /usr/bin/chown: Argument list too long

 

 

수정한 코드

$ sudo chown -R user:user .

 

다른 linux 환경에서는 위의 코드도 작동을 잘하는 것을 확인하였다. 

 

참조

https://stackoverflow.com/questions/17188292/list-too-long-to-chmod-recursively

 

List too long to chmod recursively

I have tried the following command to chmod many images within a folder... chown -R apache:apache * But i get the follwing error -bash: /usr/bin: Argument list too long I then tried ... ls | ...

stackoverflow.com

 

 

-히비스서커스-

728x90