도구 > 정렬
'분류 전체보기'에 해당되는 글 666건
- 2015.01.05 editplus 중복 삭제
- 2014.12.24 window, process 죽이기
- 2014.12.16 unix hpux 파일크기가 0 인것 찾기
- 2014.12.15 c, 한글 출력
- 2014.12.11 c strtok
- 2014.12.10 vi, :e#. 이전 파일 열기
- 2014.12.08 perl, hash of array
- 2014.11.21 eclipse & tomcat, The content of element type "web-app" must match
- 2014.11.20 eclipse & tomcat, 원하는 폴더를 웹서비스에 추가
- 2014.11.20 tomcat. tomct multiple contexts could not publish
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 ++;
}
}
hash of array '\' 를 사용한다
(http://www.perlmonks.org/?node_id=1977)
my @arrayOne = 1..10; my @arrayTwo = 20..30; my %HashOfArrays = ( one => \@arrayOne ); $HashOfArrays{two} = \@arrayTwo;
http://blog.naver.com/PostView.nhn?blogId=dlwlal1004&logNo=90164896523
출처: http://stackoverflow.com/questions/202253/eclipse-tomcat-how-to-specify-which-folder-is-served-from-the-project
1. Project Facet "Dynamic Web Module" 활성화
2. project
> properties
> 'Deployment Assembly'
Add... Folder -> Next
원하는 폴더 선택
localhost-config/server.xml 을 열어서 중복된 행 제거