일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Pull Request
- docker attach
- GIT
- numpy
- 도커
- 기초확률론
- docker exec
- AIFFEL
- WSSS
- Jupyter notebook
- 백신후원
- HookNet
- ssh
- cs231n
- vscode
- docker
- aiffel exploration
- IVI
- Decision Boundary
- 코크리
- 프로그래머스
- cocre
- airflow
- logistic regression
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- 오블완
- 히비스서커스
- 티스토리챌린지
- CellPin
- 사회조사분석사2급
Archives
- Today
- Total
히비스서커스의 블로그
[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:06728x90

상황
한번에 현재 경로 아래의 디렉토리 및 파일들 권한을 변경해주기 위해 아래와 같이 명령하였다.
실패한 코드
$ 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
'Programming > Linux' 카테고리의 다른 글
[Ubuntu] 고정 IP 설정하기 (0) | 2022.05.12 |
---|---|
[Ubuntu] ubuntu 18.04 login loop 해결 방법 모음 (0) | 2022.04.28 |
[Linux] 여러 파일들 특징에 맞는 여러 디렉토리에 옮기는 shell script 작성방법 (feat. 8: Bad substitution) (0) | 2022.03.21 |
[Linux] htop 시 memory, swap이 꽉 찬 경우 (feat. 특정 이름의 프로세스 삭제하는 방법) (0) | 2022.03.21 |
[Linux] ssh: Could not resolve hostname ubuntu: Temporary failure in name resolution (feat. scp로 파일 전송 시) (0) | 2022.03.11 |