본문 바로가기
SMALL

분류 전체보기50

linux 명령어 정리 linux : 1. display @@.png : image 보기 터미널에서 Screenshot 사용법 import image.png 실행하면, 십자모양 나옴.드래그. 2. find . -name “*.v” | xargs grep -l ccc 파일내의 ccc 검색 grep -inrw “찾는 문자열” ./ -i : ignore case -n : print line number -r : recursive (equivalent to -d) -w : word만 grep -rnw ‘경로’ -e ‘이름’ // ‘경로’ 안에있은 file중에 ‘이름’이 있는 것 찾기 3. ssh user@10.96.103.164 -X 접속하기 scp -r user@10.100.100.100:/user/파일경로 . 4.vimdiff a.. 2021. 7. 1.
Vim 명령어 gvim : http://math.ewha.ac.kr/~jylee/CompMath.html/unix2/ch5.html 1. grap후 내용0 or 내용1 이있는부분 라인 지우기 grap/내용0₩|내용1/을 지워라(line지우기) :g/내용0₩|내용1/d 2. 폴딩(folding) zf : 선택부분 접기 zi : 접는기능 토글(누를 때마다 접기/펴기가 토글됨) zv : 켜서 줄 보기 zo : 부분 펴기 open zc : 부분 접기 close zM : 모두 접기 zR : 모두 펴기 zd : 접은 부분 삭제 3. ggvG= gg : 처음으로 v : visual mode G : 끝으로 = : 정렬하기 4. 대소문자 변환 블럭지정후, u(소문자) , U(대문자) 5. :nohl //강조문자 없애기 6. 글자 치환.. 2021. 7. 1.
Google 검색 tip "A" : A 반드시포함. "A-B" : B를 제외, A를 포함. A*B : 검색어를 모를때, ACB,ADB etc 의 검색결과. 수식 : 수식의 결과 define:A : A의 사전적의미 ~A B : A와 유의한 의미를 가진단어의 결과. filetype:doc A : doc 파일인 A 검색. 2012년..2014년 : 2012~2014년까지의 검색결과 site:www.youtube.com A : 유투브사이트내의 A검색. 번역 site 막히면, 번역주소 + “&prev=search” 추가 2021. 7. 1.
Modern Microprocessor architecture - 현대의 Processor 특징 http://www.lighterra.com/papers/modernmicroprocessors/ 의 내용을 가져옴. WARNING: This article is meant to be informal and fun!Okay, so you're a CS graduate and you did a hardware course as part of your degree, but perhaps that was a few years ago now and you haven't really kept up with the details of processor designs since then.In particular, you might not be aware of some key topics that developed r.. 2017. 6. 9.
LIST