일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- oracle install
- solaris
- fdisk
- sqlplus
- RHEL4
- patch
- Oracle RAC
- php5
- grid
- bash
- Linux
- perl one-liner
- perl string
- mariaDB
- command & perl
- Unix
- oracle
- memory
- perl + 정규표현식
- PERL
- rac
- Network
- 연산자
- cygwin
- dba
- solaris network
- MySQL
- 오라클
- SQL
- prompt
Archives
- Today
- Total
DATA 전문가로 가는 길
[Unix/Linux] awk, perl 문자열 뽑을때 작은 따음표(single guote) 사용 방법 본문
OS/Fundamental
[Unix/Linux] awk, perl 문자열 뽑을때 작은 따음표(single guote) 사용 방법
EstenPark 2011. 2. 20. 15:08작성자 : 박상수
작성일자 : 2011.02.19
작업환경 : VMware7 [ RHEL4, Oracle Database 10g r2 patchset 4 ]
작성일자 : 2011.02.19
작업환경 : VMware7 [ RHEL4, Oracle Database 10g r2 patchset 4 ]
1. Single Quote 사용 방법
[1-1 개념] 보통 문자열을 출력 하기 위해서 print, printf를 사용 합니다. 하지만 특수문자는 명령어로 인식 하기 때문에 와일드 카드[ \ ]를 사용해야 문자로 인식 하는데 그중에 [ ' ] 작은 따음표는 유독히 와일드 카드를 사용해도 명령어로 인식 하는 듯 싶습니다. 그래서 아래와 같이 사용하면 문자열로 인식 시켜서 사용 할 수 있습니다.
주로 많이 사용하는 SQL 문이나 특정 문자열을 작은 따음표로 묶어 줘야 할때 아래와 같이 사용하면 편리 합니다.
[예제 1] awk '{printf("Here is a single \'\''quote\'\'' example.\n")}'
[예제 2] ls -al |awk '{print("asdfasdfasdf aaaa\'\'' \n")}'
[예제 3] update 문으로 이용 가능 합니다.
[2011-02-20 14:55:36]-[oracle@estenpark:~/arch_data/arch1]
$ ls -al |grep arc |awk -F' ' '{printf("update table set name= \'\''%s\'\'' where dept_no=1243; \n", $9)}'
update table set name= '100_1_742770060.arc' where dept_no=1243;
update table set name= '101_1_742770060.arc' where dept_no=1243;
update table set name= '102_1_742770060.arc' where dept_no=1243;
update table set name= '103_1_742770060.arc' where dept_no=1243;
주로 많이 사용하는 SQL 문이나 특정 문자열을 작은 따음표로 묶어 줘야 할때 아래와 같이 사용하면 편리 합니다.
[예제 1] awk '{printf("Here is a single \'\''quote\'\'' example.\n")}'
[예제 2] ls -al |awk '{print("asdfasdfasdf aaaa\'\'' \n")}'
[예제 3] update 문으로 이용 가능 합니다.
[2011-02-20 14:55:36]-[oracle@estenpark:~/arch_data/arch1]
$ ls -al |grep arc |awk -F' ' '{printf("update table set name= \'\''%s\'\'' where dept_no=1243; \n", $9)}'
update table set name= '100_1_742770060.arc' where dept_no=1243;
update table set name= '101_1_742770060.arc' where dept_no=1243;
update table set name= '102_1_742770060.arc' where dept_no=1243;
update table set name= '103_1_742770060.arc' where dept_no=1243;
'OS > Fundamental' 카테고리의 다른 글
[Unix/Linux] 실시간 로그 파일 확인 후 종료 하는 방법(ending tail -f) (1) | 2016.12.16 |
---|---|
[Unix/Linux] 계정 만료일자 날짜 포멧에 따라 변경하는 방법(usermod) (0) | 2016.03.11 |
[Unix/Linux] Solaris 10 - 네트워크 설정, 암호화 방식 변경, 홈 디렉토리 변경 및 쉘 변경(bash), SSH 환경 설정 (0) | 2011.01.09 |
[Unix/Linux] Solaris Patch 설치가이드 (0) | 2010.12.06 |
[Unix/Linux] Solaris - Hard Disk 추가 및 구성 (1) | 2010.12.03 |
Comments