1. vi 에서 블럭 지정을 이용한 # 추가


Ctrl + v 로 원하는만큼 블럭 지정

Shift + i

# 입력

Esc 


2. vi 문자열 치환을 이용해서 # 추가


10~20 줄까지 주석

:10, 20s/^/#/g

10~20 줄까지 주석 지우기

:10, 20s/^#//g 


3. here document 사용하기


<<COMMECT_END 

comment 1

comment 2

comment 3

...

COMMECT_END


출처 : http://forum.falinux.com/zbxe/index.php?document_srl=785985&mid=lecture_tip

- 파일 이어 쓰기

echo 'abcd' >> test.txt


- 스크립트 코드



- 결과

repeat:216523   total:5023668   (0.043101)

repeat:217856   total:5077349   (0.042907)

 . . . . . .

repeat:211803   total:5000116   (0.042360)

repeat:222836   total:5041013   (0.044205)

--------------------------

repeat:21476831 total:506915435 (0.042368) 




$ start=0; end=10; for i in `seq -f "%03g" $start $end` ; do  echo $i ; done;      

000

001

002

003

004

005

006

007

008

009

010


$ seq -w 0 10

00

01

02

03

04

05

06

07

08

09

10



- Reference

http://foris.tistory.com/256


- Reference

http://jink1982.tistory.com/74

+ Recent posts