haracter(s) Pattern Ex. String Ex. (Pattern matches in red) Example Description & Jsfiddle Type Meta Characters ^ /^Cat/ Cat go fast string must start with Catjsfiddle anchor $ /slow$/ Dogs are slow string must end with slowjsfiddle anchor * /bo*/ boom and boat and bug matches when the precedingo occurs 0 or more timesjsfiddle quantifier + /bo+/ boom and boat and bug matches when the precedingo ..
dump pg_dump @' resore # 파일 포멧 Fppsql -U 디비 < 파일 # 파일포맷 Fc, Ftpg_restore 유져 디비 아이디 pg_dump [ optiosn..][dbname] OPTIONS-a 스키마를 제외한 데이터만 백업-b Include large objects in the dump. This is the default behavior except when --schema, --table, or --schema-only is specified, so the -b switch is only useful to add large objects to selective dumps.-c 데이터베이스 삭제 포함-C 데이터베이스 생성 구문까지 포함(복구하려는 데이터베이스가 없는 서버에 복구..
패킷 체크 ngrep tcp and dst host 아이피 and dst port 포트ngrep '' -d eth0 port 포트 vi 치환* aReqVal[dddddd] => aReqVal['dddddd'] 로 치환:%s/aReqVal\[\([a-z_]\+\)/aReqVal\[\'\1\'/g ipTable iptables -D fail2ban-SSH 1 파일명 찾기find / \-name 파일명 \-type f파일명 찾기(대소문자 구별없음)find / \-iname 파일명 \-type f디렉토리 찾기find / \-name 파일명 \-type d디렉토리 찾기(대소문자 구별없음)find / \-iname 파일명 \-type d1. 루트 디렉토리부터 확장자가 txt인 파일을 찾아서 화면에 파일 이름 출력f..
리눅스 파일 내용 검색하기 find ./ -name '*.php' | xargs grep -l "'aaa'"
find ./ -name "aaa.txt" find 사용예 find . -name xxx.xxx : 이름찾기 find . -size +xxxc : 크기 찾기 find . -atime 0 : 열어본 파일 찾기 find . -mtime -1 : 수정한 파일 찾기 find . -name .svn | xargs rm -rf : 원하는 파일만 지우기 grep -ir "abc" ./* -i : 영문의 대소문자를 구별하지 않는다. -v : pattern을 포함하지 않는 라인을 출력한다. -n : 검색 결과의 각 행의 선두에 행 번호를 넣는다(first line is 1). -l : 파일명만 출력한다. -c : 패턴과 일치하는 라인의 개수만 출력한다. -r : 하위 디렉토리까지 검색한다. 3. 사용 예 grep hel..