(출처 : http://hhy8001.tistory.com/8 )
서식 복사 : Ctrl + Shift + C
서식 붙여넣기 : Ctrl + Shift + V
(출처 : http://hhy8001.tistory.com/8 )
서식 복사 : Ctrl + Shift + C
서식 붙여넣기 : Ctrl + Shift + V
출처: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/
printf("%c%c\n", 0xffffffc7, 0xffffffd4); // 함
printf("%c%c\n", 0xffffffbc, 0xfffffff6); // 수
printf("%c%c\n", 0xffffffb8, 0xffffffed); // 명
#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 ++;
}
}