2011년 7월 25일 월요일

2011년 7월 18일 월요일

converting tabs to spaces for vim

In VIM command :

: retab

All the new tab characters entered will be changed to spaces...

2011년 7월 13일 수요일

JK김동욱 재즈 음악 무료배포~!!

http://www.melon.com/svc/studio/album_info.jsp?p_albumId=1312252&MAIN=4PM

위의 멜론에서 JK김동욱이 JAZZ 음악인 ZEBRA 를 무료로 배포한다...

들어 봤는데.. 좋더라~ :)

JK 저음의 독특한 음색이 상당히 JAZZ 와 어울린다는...

2011년 7월 6일 수요일

산토리니에서 찍은 사진이라고 한다...



이 사진을 처음보고 느낀것은 "와~ 멋있다~!! ^^" 이다. 그 후에 느낀것은 우리나라 산동네도 재개발한다고 아파트를 짓지 말고 산토리니 이쁘게 재개발을 하는것도 좋을것 같다고 느낀다~~

나도 산토리니로 놀러가고 싶다~ >.< 이 사진은 클량의 nozomi 님이 올리신것 입니다. - Posted using BlogPress from charlie's iPhone

How To Redirect stderr To stdout~!!!

Bash and other modern shell provides I/O redirection facility. There are 3 default standard files (standard streams) open:

1) stdin - Use to get input (keyboard) i.e. data going into a program.

2) stdout - Use to write information (screen)

3) stderr - Use to write error message (screen)

Understanding I/O streams numbers

The Unix / Linux standard I/O streams with numbers:
Handle 0: stdin Standard input
Handle 1: stdout Standard output
Handle 2: stderr Standard error

Redirecting the standard error (stderr) and stdout to file

Use the following syntax:


$ command-name &>file
OR
$ command > file-name 2>&1


Another useful example:
# find /usr/home -name .profile 2>&1 | more