반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- join #postgresql #sql #database
- chatgpt3 #AI #datascience
- EDB
- linux #filesystem #linuxdirectory
- network #network_terminology #network_protocols
- High_Availability
- SQL_COMMANDS #DDL #DML #TCL
- SQL #NULL #NOT_NULL
- Network #TCP #IP #Netmask #Host
- inux #ome_dir #unix #linux_commands #linux_useradd #useradd
- the_one_thing
- postgresql
- postgresql #vacuum #full_vacuum #verbose
- Replication
- streaming_replication
- SQL_VIEW #SQL #VIEW
- Linux #linux_tar #split
- dbms
- glossary #database #termins #postgresql #postgresql_architecture
- postgresql_fdw
- Database
- one_thin
- postgresql #system_memory #local_memory #shared_memory #postgresql_architecture
- SQL_basic
- postgresql #pgadmin #port #firewalld
- RAM #CPU #CS #Computer_Science #Terms
- database #dbms #objects #sql #schema #table #functions
- oid2nae #postgresql
- data_oid
- repmgr #postgresql #replication #HA
Archives
- Today
- Total
목록linux #linuxgrep #unix #linuxcommands (1)
i am lazy

Linux grep이란 ? 리눅스에서 grep 명령어는 특정 파일에서 지정한 문자열이나 정규표현식을 포함한 행을 출력해주는 명령어입니다. grep [option] [pattern] [file name] Example: 1) 파일에서 텍스트 찾기 grep " my blog" test.text 2) 대소문자 구분 무시 grep -i "I" test.text -i --ignore 3) 패턴 수 세기 ps -ef | grep -c edb -c --count 4) 출력 라인으로 라인 번호 인쇄 cat /etc/passwd | grep -n enterprisedb -n --line-number 자주 사용하는 옵션: -c : 일치하는 행의 수를 출력한다. -i : 대소문자를 구별하지 않는다. -v : 일치하지 않는 ..
Linux
2022. 9. 30. 16:50