Linux 5

[Tip] linux programming에서 SVN 사용하기.

여즘들어서 리눅스 프로그래밍을 할 일이 많아져서... 계속 위도우에서 편하게 프로그래밍 하다가... vi에서 하고... 통합개발환경에서의 쉽게 SVN을 쓰다가... 콘솔에서 svn을 쓰자니.. 불편한게 좀..생기네요 ㅎㅎ 그래도 좀 많이 쓰는걸 정리하자면... 1. svn에 등록되어 있는 파일 리스트를 보고 싶을 때 svn list [svn 주소] 2. svn에 등록되어 있는 파일을 현재 개발중인 local로 가져오고자 할때. (처음 받는 경우 ) svn checkout [svn 주소] 3. 수정후 svn서버에 등록하고자 할 경우 - svn commit - svn commit [파일명] 4. 다른 사용자가 수정한 파일로 현재의 파일을 업데이트 하고자 할 경우 - svn update - svn update..

tip 2009.11.29

[linux] linux 작업 스케쥴러.. crontab

Demon이라는 녀석이 있습니다. Daemon In Unix and other computer multitasking operating systems, a daemon (IPA pronunciation: /'de?m?n/ or /'dim?n/[1]) is a computer program that runs in the background, rather than under the direct control of a user they are usually initiated as processes. Typically daemons have names that end with the letter "d" - wikipedia - 결국 백그라운에서 뭔가를 궁시렁 대는 녀석이라는 뜻이죠.. ^^ 기본적으로 제공되는 ..

tip 2009.03.09