아직 블로그를 개설하지 않으셨습니다.친구 신청을 하시려면 먼저 블로그를 개설해 주세요.
지금 개설 하시겠습니까?
친구가 되시면 친구의 새글 및 활동에 대한 알림을 받아보실 수 있습니다.
gamza-net님에게 친구신청을 하시겠습니까?
친구 신청을 했습니다.상대가 수락하면 친구가 됩니다.
친구 신청을 실패했습니다. 잠시 후 다시 시도해 주세요.
친구 신청 가능 수를 초과했습니다.
find 폴더이름 -name "*" -exec grep -q -I "찾을문자열" {} \; -exec perl -pi -e "s/찾을문자열/바꿀문자열/g" {} \;
(@) 상대경로로 절대경로 변환(full path) export SHARED_DIR := $(shell cd ../../../../;pwd) (@) 상대경로의 폴더이름 가져오기 export IP_TOP_NAME := $(notdir $(shell cd ../../../;pwd)) (@) 현재경로의 폴더이름 가져오기 export IP_NAME := $(notdir $(shell pwd)) (@) 서브폴더/파일 목록 가져오기 RUNDIRS = $(wildcard $(RUNDIR_PATH)/*) (@) ..
[WINXP] 다음과 같은 .reg파일을 만들어 레지스트리에 등록하면 .svn폴더를 지워주는 메뉴가 우클릭 팝업에 추가됨. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] @="Delete SVN Folders" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] @="cmd.exe /c \"TITLE Removing SVN Folde..
#include <stdio.h> #include <string.h> #include <unistd.h> /* for open/close */ #include <fcntl.h> /* for O_RDWR */ #include <sys/ioctl.h> /* for ioctl */ #include <sys/types.h> /* for mmap options */ #include <sys/signal.h> #include <errno.h> /* error */ static void * sig_term_hnd = NULL; static void * sig_int_hnd = NULL; static void signal_handl..
process id: user : #inlcude <unistd.h> // for pid_t getpid(void) kernel : pid_t getpid(void){ return task_tgid_vnr(current); } thread id: user : syscall(__NR_gettid) kernel : current->pid