"파이썬 .pyc 파일 삭제하기"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(사용자 2명의 중간 판 2개는 보이지 않습니다)
5번째 줄: 5번째 줄:


==방법==
==방법==
<source lang='bash'>
<syntaxhighlight lang='bash'>
find . -name "*.pyc" -exec rm -rf {} \;
find . -name "*.pyc" -exec rm -rf {} \;
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[.pyc 파일]]
* [[python 기초]]
* [[python 기초]]
* [[python cache]]
* [[python cache]]

2020년 11월 2일 (월) 02:32 기준 최신판

1 개요[ | ]

Removing .pyc files in directory
디렉토리 .pyc 파일 삭제
  • 디렉토리 .pyc 파일 모두 삭제

2 방법[ | ]

find . -name "*.pyc" -exec rm -rf {} \;

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}