일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CellPin
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- WSSS
- cs231n
- 오블완
- airflow
- 프로그래머스
- GIT
- 코크리
- ssh
- AIFFEL
- aiffel exploration
- IVI
- docker exec
- Decision Boundary
- docker
- 티스토리챌린지
- vscode
- Pull Request
- Jupyter notebook
- docker attach
- 기초확률론
- 사회조사분석사2급
- logistic regression
- HookNet
- 히비스서커스
- 백신후원
- cocre
- 도커
- numpy
Archives
- Today
- Total
목록한번에 현재 경로 아래의 디렉토리 및 파일들 권한 변경 (1)
히비스서커스의 블로그
[Linux] 한번에 현재 경로 아래의 디렉토리 및 파일들 권한 변경해주기 (feat. -bash: /usr/bin/chown: Argument list too long )
상황 한번에 현재 경로 아래의 디렉토리 및 파일들 권한을 변경해주기 위해 아래와 같이 명령하였다. 실패한 코드 $ 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..
Programming/Linux
2022. 3. 24. 17:06