반응형 분류 전체보기205 find 고찰 및 활용 #find -name $filename $filename의 이름을 가진 파일을 찾는다. (RE로 정확히 매칭) recursive하다. #find -perm -u+x user permission이 x(execute)인 파일들을 찾는다. #find -type f 폴더를 제외한 파일만(?) 찾는다. #find ........ | xargs file .......조건으로 찾은 파일들의 정보를 본다. ( #file $files ) 찾은 파일이 가장 마지막의 argument로 들어가게 된다. #find ........ -exec cp {} directory/ \; .......조건으로 찾은 파일들을 directory/로 복사. ( #cp $files directory/ ) 찾은 파일이 {}자리의 argument로 .. 2011. 9. 19. 리눅스 fg(fore ground), bg(back ground) #./run & 다음과 같이 명령어 뒤에 &를 붙여주면 back ground로 실행된다. #./run && ./run2 && 두개를 붙이면 하나 완료 후 다음 작업 실행 #./run ctrl+z 프로세스를 stop시킴. 그후 #fg 다시 foreground로 가져옴. #bg stop됬던 process를 background에서 실행시킴. #jobs [1]+ Stopped run [2]+ Stopped run2 실행중인 process를 알수 있다. #fg 2 run2를 다시 실행시킴. 2011. 9. 19. if 안에 boolean expression Optimization if 안에 boolean expression이 있으면 모두 다 실행을 안한다. 예를들어 if( true() || false() ) ; 이렇게있으면 true()가 true를 return 하기때문에 false()가 false든 true든 무조건 if문을 실행시키게된다. 따라서 false()라는 함수는 실행시키지 않는다. ex) static boolean a(boolean result, String function) { System.out.println(function); return result; } public static void main(String[] args) { if( a(true, "1") && a(true,"2") ) ; } 결과: 1 2 public static void main(String.. 2011. 9. 16. putty 나 xShell 등 shell 프로그램에서 GUI (X11) 보기 x11 gui 정보를 Xming으로 포워딩 시켜준다. http://sourceforge.net/projects/xming/files/Xming/ 에서 다운 & 설치 설치 및 준비 완료 putty 설정 Xshell설정 2011. 8. 9. 이전 1 ··· 38 39 40 41 42 43 44 ··· 52 다음