(출처 : http://hhy8001.tistory.com/8 )


서식 복사 : Ctrl + Shift + C

 

서식 붙여넣기 : Ctrl + Shift + V


* ctrl + ] : 괄호찾기

* End  : 줄  끝으로 가기


출처:http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/


환경: csh, tcsh

(X)

find .  -name SEARCH-ITEM 2 > /dev/null


(O)

(find .  -name SEARCH-ITEM  > /dev/tty) > & /dev/null




(https://docs.oracle.com/cd/E11882_01/server.112/e41573/hintsref.htm#CHDJIGDG)


SELECT /*+ PARALLEL(employees 3) */ e.last_name, d.department_name

FROM   employees e, departments d

WHERE  e.department_id=d.department_id;



페이지 레이아웃탭 > 맞춤 


도구 > 정렬


taskkill /f /fi "imagename eq note*" /im * /t
출처:https://sunhyeon.wordpress.com/2014/12/16/1714/



find . -size 0


printf("%c%c\n", 0xffffffc7, 0xffffffd4); // 함 

printf("%c%c\n", 0xffffffbc, 0xfffffff6); // 수

printf("%c%c\n", 0xffffffb8, 0xffffffed); // 명


c strtok

카테고리 없음 2014. 12. 11. 09:15

#include <stdio.h>

 

#include <strings.h>

 

int main(){

 

    char sep[]="|";

 

    char *token;

 

 

    char s[] = "lizard|ant|butterfly";

 

    int i = 0;

 

 

    token = (char *)strtok(s, sep);

 

    while ( token != NULL ){

 

        printf("[%d] TH token:%s\n", i, token);

 

        token = (char *)strtok(NULL, sep);

 

        i ++;  

 

    }

 

}