Reference : http://www.commandlinefu.com
위의 site 에서 쓸만한 녀석들만 모아서~
1. clear terminal screen
$ <ctrl> l
- 그냥 ctrl + l (영문자 L 의 소문자)
2. 많이 쓴 command 를 출력해주는 script
$ history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
3. 마지막 command 입력한 것을 script로 만들어줌.
$ echo "!!" > foo.sh
4. 빠른 파일 이름 변환
$ mv filename.{old,new}
5. googlecl(google command line 사용법)
- google 이 제공하는 service(docs, contact, calendar 등) 을 command line 에서 사용가능 하도록 지원.
- 설치해야하는 package
a. googlecl : http://code.google.com/p/googlecl/downloads/list 에서 최신버전
b. gdata : https://code.google.com/p/gdata-python-client/downloads/list 에서 최신버전
위의 page에 접속해서 각각의 설치 방법을 활용
둘다 설치가 완료되었다면, google docs 를 vim 으로 editing 할 수 있는 방법이 있다. 다른 service 를 command 로 이용하는 방법은 http://code.google.com/p/googlecl/wiki/Manual 에 참조
$ google docs edit --title "Kernel Study" --editor vim
최조 인증 확인을 하는데, 실행하면 login 화면이 browser를 통해 뜨고 로그인하면 인증번호를 제공함. 제공된 인증번호를 넣고 enter 하면 vim 에 docs의 내용과 함께 수정 가능하게 됨. 수정 이 후, 저장하고 종료하면 docs.google.com 에 특정 문서가 반영이 됨.
'Development Tip' 카테고리의 다른 글
PuTTY 설정 값 공유하는 방법 (0) | 2013.10.07 |
---|---|
Git with eclipse (0) | 2013.04.04 |
Tips for VIM (0) | 2013.02.21 |
Use gerrit with git push command. (0) | 2013.02.20 |
Autoloading Cscope Database(cscope.out file) (0) | 2013.02.06 |