반응형 분류 전체보기30 [Linux] history 기록 과정 및 완전 삭제 방법 history 기록되는 과정명령어 입력 -> buffered -> 로그아웃 시 .bash_history에 기록history 결과의 구성요소.bash_history + buffer.bash_history: 이전 세션에서 입력한 명령어buffer: 현재 세션에서 입력한 명령어로그인 후 입력한 명령어는 history에는 보이나, .bash_history 내용을 까보면 보이지 않음(로그아웃 시 기록) [root@localhost system]# history 1 history 2 cd /etc/yum.repos.d/ 3 ll 4 vim CentOS-Base.repo 5 cat CentOS-Vault.repo 6 cd .. 7 ll 8 cd systemd.. 2023. 11. 20. [JAVA] Intellij IDE에서 'while' statement cannot complete without throwing an exception 해결 방법 증상 while(true) 코드 작성 중, Intellij IDE에서 발생하는 Warning 해결 방법 SuppressWarnings 를 사용하여, 해당 Warning 삭제 원인 Intellij 에서 정상적인 코드도 해당 warning을 출력한다고 하므로, 무시가능 2023. 8. 21. [Python] 파이썬 for문 사용법(continue문 포함) 1. for문 기본 사용 방법 사용 방법) for 변수 in 리스트: 수행1 수행2 ..... 사용 예시) list = [1,2,3] for i in list: print(i) 결과) 1 2 3 2. continue 사용 방법 for문에서 특정 조건을 충족했을때 건너뛰려는 경우 continue 사용 사용 예시) list = [1,2,3,4,5] for i in list: if i == 3: continue print(i) 결과) 1 2 4 5 2023. 1. 31. [Python] Pywin32 / Pypiwin32 버전 설치 오류 * Pywin32 는 Python 의 버전 및 설치한 Python 비트에 맞게 설치 되어야 함. *Pywin32 다운로드 링크 : https://github.com/mhammond/pywin32/releases * 네임룰 : pywin32 - 버전 - 설치한python 비트 - 설치python version * 리눅스에서는 Source code(zip)을 다운로드 및 이동하여, 아래 명령어 수행 python Scripts\pywin32_postinstall.py -install 이후 pywin32 설치 * 해당 포스터는 차후 정리되어야 함.(까먹을가봐 일단 대충 적어놓음) * 수정 https://pypi.org/project/pywin32/#files pywin32 Python for Window Ext.. 2022. 12. 12. 이전 1 2 3 4 5 ··· 8 다음 반응형