정규표현식(Regular Expression) 관련 좋은 자료

컴퓨터 2014. 7. 27. 23:40
정규표현식(Regular Expression)을 소개합니다.
http://www.nextree.co.kr/p4327/

 

find 명령을 사용해서 일정기간이 지난 파일 삭제하기

컴퓨터 2014. 7. 27. 23:31

find /tmp -name "*.sh" -mtime 1 -exec rm {} \;

 

/tmp 디렉토리 밑에서

모든 *.sh 파일을 대상으로

 

-mtime 1

만들어진지 1 days 가 지난 파일

 

-mtime +1 vs -mtime 1 이 살짝 다름.

vim 에서 cut 명령 구분자 delimiter 사용법

컴퓨터 2014. 7. 27. 23:29

!cut -f2 -d\"

 

-d\"

" 를 구분자로 사용해서

 

-f2

두번째 필드 값만 출력

python XMLRCServer 구현 참조

컴퓨터 2014. 7. 25. 08:58
SimpleXMLRPCServer – Implements an XML-RPC server
http://pymotw.com/2/SimpleXMLRPCServer/

 

xming 클립보드 복사 붙여넣기 문제

컴퓨터 2014. 7. 25. 08:57

xming copy paste problem
http://www.linuxquestions.org/questions/linux-software-2/xming-problem-cannot-copy-and-paste-from-windows-519544/

 

/etc/gdm/custom.conf

[daemon]
KillInitClients=false

 

gdm-restart command not found in CentOS 6
https://www.centos.org/forums/viewtopic.php?t=989


1. Ctrl-Alt-F2 to get a virtual console login prompt.
2. Log in as root.
3. "telinit 3; telinit 5; exit"

 

도커(Docker) 튜토리얼

컴퓨터 2014. 7. 23. 20:31
도커(Docker) 튜토리얼 : 깐 김에 배포까지
http://blog.nacyot.com/articles/2014-01-27-easy-deploy-with-docker/

 

Docker
https://www.docker.com/

개발자들이 흔히 실수하는 SQL 7가지 - SlideShare

컴퓨터 2014. 7. 4. 09:19

개발자들이 흔히 실수하는 SQL 7가지 - SlideShare
http://www.slideshare.net/redrebel/20140510-34551078

파이썬 개발자의 테크니컬 이슈_광운대학교 이강성 교수

컴퓨터 2014. 7. 4. 06:56

http://www.software.kr/mbs/swkr/jsp/board/view.jsp?spage=1&boardId=127&boardSeq=2107692&mcategoryId=&id=swkr_040200000000 

xlsstart 위치 확인

컴퓨터 2014. 6. 28. 21:55

Press [Alt]+[F11] to launch the VBE.
press [Ctrl]+g.
? application.StartupPath
C:\Users\Administrator\AppData\Roaming\Microsoft\Excel\XLSTART

 

출처:

Quick tip: Find Excel's XLStart folder fast

http://www.techrepublic.com/blog/microsoft-office/quick-tip-find-excels-xlstart-folder-fast/

vagrant 에서 CentOS 사용시 private network 에러 문제

컴퓨터 2014. 6. 27. 17:21

Configuring and enabling network interfaces" fails with ssh error #2614
https://github.com/mitchellh/vagrant/issues/2614

eth1으로 안 잡히고, eth2가 잡히는 문제

 

CentOS 이미지 제작을 잘못 했음.

 

아래 글 참고해서 수정하면 됨

 

vi /etc/udev/rules.d/70-persistent-net.rules

 

udev: renamed network interface eth0 to eth1
http://blog.syszone.co.kr/3161