sed 리눅스 명령어 파일 메모장 내용 수정 .txt 파일 파일명 수정
·
Computer Science/Linux
https://etloveguitar.tistory.com/47 [Linux] sed - 리눅스 명령어 sed에 대해서 sed 명령어는 편집에 특화된 명령어다. sed = streamlined editor의 약자 (능률적인) 수정 치환 삭제 글 추가 등 편집기 기능을 수행할 수 있다. vi, vim은 편집기를 열어서 수정하는 방식이라면, sed는 명령 etloveguitar.tistory.com https://heum-story.tistory.com/62 [리눅스] sed 사용하여 파일 내용 일괄 변경/삭제 리눅스에서 여러 파일들의 동일한 내용을 전체 변경하거나 파일에서 원하는 내용만 삭제하고 싶을때 일일이 vi로 열어서 변경하지 않고 sed 명령어를 사용하면 유용합니다. 1. 1개 파일 내용 변경 he..
쉘스크립트 만들고 실행하기까지 과정 간단요약버전
·
Computer Science/Linux
https://deeplify.dev/server/bash/create-execute-file-in-linux [Linux/리눅스] Shell 실행 파일 만드는 방법 및 예제 리눅스 환경에서 Shell 스크립트로 실행파일을 만드는 방법을 예제를 통해 소개합니다. deeplify.dev
리눅스 파일 권한 설정 chomod 개념까지
·
Computer Science/Linux
https://recipes4dev.tistory.com/175 리눅스 chmod 명령어 사용법. (Linux chmod command) - 리눅스 파일 권한 변경. 1. 리눅스 파일 사용 권한 리눅스에서, 파일(File)을 사용해 할 수 있는 작업은 크게 세 가지로 나눌 수 있습니다. 파일에 저장된 데이터를 읽기. (r = read). 파일에 데이터를 쓰기. (w = write). 파일 실 recipes4dev.tistory.com
리눅스 우분투 한글 설치
·
Computer Science/Linux
https://ti.bqbro.com/21 [Linux] 우분투 터미널 한글 적용 기본 우분투의 터미널에선 한글 입력이 안된다. 단순 한글 입력을 못한다를 넘어서서 한글 출력 또한 안되기 때문에 한글이 들어간 소스 코드의 실행에 오류가 나는 경우가 생긴다. 이 문제를 ti.bqbro.com
원격 주피터에 가상환경 설치하는방법 ipykernel
·
Computer Science/주피터노트북
https://blueriver97.tistory.com/29 Jupyter Notebook에 가상환경 Kernel 추가 1. 가상환경 활성화 $ source /bin/activate 2. 가상환경 내에서 ipykernel 설치 (가상환경)$ pip install ipykernel 3. 가상환경 내에서 커널 등록 (가상환경)$ python -m ipykernel install --user --.. blueriver97.tistory.com
git 설명
·
Computer Science/깃(Git)
www.slideshare.net/ibare/dvcs-git 버전관리를 들어본적 없는 사람들을 위한 DVCS - Git git Learn DVCS For beginner Distributed Version Control System www.slideshare.net
아나콘다 설치 튜토리얼
·
Computer Science/주피터노트북
https://myborn.tistory.com/7 ubuntu에 파이썬, anaconda, jupyter notebook 설치 1. 파이썬 설치 $> sudo apt-get update // apt-get 항목 업데이트 $> sudo apt-cache search python3 // 패키지 검색 $> sudo apt install python3.6 // 파이썬 3.6버전 설치 $> python3 -V // 파이썬 버전 $> su.. myborn.tistory.com
프로그래밍에서 hooking/hook 의 개념
·
Computer Science/IT용어
http://jinuine.blogspot.com/2014/05/hooking-hooking.html [hooking, 후킹, 훅킹] Hooking이란? source: http://jinhokwon.blogspot.kr/2013/01/hooking.html Hooking 이란? [출처] http://blog.daum.net/guyya/2444691 훅킹(Hooking)이란 이미 작성되어... jinuine.blogspot.com