bin
-
sedbin/script 2008. 3. 19. 14:37
sed wiki http://en.wikipedia.org/wiki/Sed sed 예제 http://sed.sourceforge.net/sed1line.txt sed 기초 http://www.ibm.com/developerworks/kr/library/l-sed1.html sed 한글 http://rhdxmr.tistory.com/59 sed kgun http://korea.gnu.org/manual/release/sed/x110.html sed: sequentil stream 을 처리 sed (Stream EDitor) refers to a Unix utility for parsing text files and the programming language it uses to apply textual t..
-
makebin/Linux 2008. 3. 6. 14:06
한글 http://www.viper.pe.kr/docs/make-ko/make-ko_toc.html 영어 http://www.gnu.org/software/make/manual/make.html two flavors of variables = 재귀적 확장매크로(recursively expanded) 장점: recursive 확장, 정의가 뒤에 있어도 됨. CFLAGS = $(include_dirs) -O include_dirs = -Ifoo -Ibar 단점: 자기 자신을 assign 못함 CFLAGS = $(CFLAGS) -O make 무한루프 에러 := 단순확장매크로(simply expanded) 장점: shell 함수와 := 를 결합해서 사용할 때 유용, 딱 한번 확장되고 끝 ifeq (0,${MAK..
-
psbin/Linux 2008. 3. 6. 11:09
http://whatilearned2day.wordpress.com/2006/11/29/wchan-in-ps-l/ /proc/*/wchan # cat /proc/18293/wchan do_exit ‘ps -l’ uses System.Map file for reading the symbols -bash-2.05b# ps -l F S UID PID PPID C PRI NI ADDR SZ WCHAN TTY TIME CMD 4 S 0 21597 21595 0 76 0 - 1096 wait4 pts/2 00:00:00 bash 4 R 0 21677 21597 0 80 0 - 794 - pts/2 00:00:00 ps CODE HEADER DESCRIPTION nwchan WCHAN address of the ke..
-
fdiskbin/Linux 2008. 3. 3. 18:11
Disk /dev/sdb (Sun disk label): 256 heads, 64 sectors, 51198 cylinders Units = cylinders of 16384 * 512 bytes Disk /dev/sdc: 1288.4 GB, 1288490188800 bytes 255 heads, 63 sectors/track, 156650 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes 초기화 # fdisk /dev/sdb Command (m for help): o Building a new DOS disklabel. Changes will remain in memory only, until you decide to write them. Afte..
-
윈도우 프로세스 리스트bin/MS 2008. 2. 27. 22:12
msiexec.exe - 삭제하지말것 윈도우 시스템 파일 언인스톨 관련 레지스트리 접근 RTHDCPL.EXE - 삭제하지 말것 리얼텍 오디오 프로세스 이어폰 재생 ALCMTR.EXE - 삭제하지 말것 찾아보니 후면 패널을 통해 단자 기능을 변경할때 사용되는 것 같다. TINTSETUP.EXE IME(Input Message Editor) 윈도우 시스템 파일 ctfmon - IME 한글 입력기로서 한영 입력 관리 IMJPMIG - ctfmon 보조기능 TINTSETP - ctfmon 보조기능 fasoo DRM - 삼성 임직원몰에서 캡처 금지용으로 설치 fph.exe, fService.exe, WinSPMsv.exe
-
cscopebin/vi 2007. 12. 12. 15:26
- cscope 용도 큰 소스를 볼 때 함수 사용 예제를 찾을 때는 cscope 가 제일 편리. cs find s - vim + cscope vim 창을 변경하면 cscope core dump 발생하면서 db 연결이 끊김 :cs reset http://lagoons.net/tt/tag/vim #!/bin/sh rm -rf cscope.out cscope.files find . \( -name '*.c' -o -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.m' -o -name '*.s' -o -name '*.S' \) -print > cscope.files cscope -i cscope.files http://lagoons.net/tt/tag/vim