일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kibana
- 보안양파
- GitLab
- Windows
- ELASTIC
- XCP-ng
- Kibana server is not ready yet
- macos
- x-pack
- elastic stack
- pfsense
- Proxy
- freebsd
- xe guest utilities
- docker
- miniconda
- ansible
- endpoint security
- centos 8
- ssh key 배포
- PlayBook
- bash
- G-suite
- application security
- 한글가이드
- 로그인불가
- proxycfg
- Elasticsearch
- hardening
- Today
- Total
목록IT/Programming (66)
선 밖에 선 자유인
sed에 대한 다양한 활용 방법http://tip.daum.net/openknow/13047153 출처 : http://ai.korea.ac.kr/~kaizer/unix/scripts.htm sed [-e script][-f script-file][file...] 기본적인 기능은 ed에서 따 왔으며, 이 기능들은 모두 sed에 적용이 된다. 다만 ed는 대화형 편집기이며, sed는 스트리밍 편집기이다. 대화형 편집기와 스트리밍 편집기의 차이점은 대화형 편집기는 입력 및 출력이 하나로 이루어지며, 스 트리밍 편집기는 하나의 입력이 하나의 출력을 낸다는 것이다. \n 을 개행문자로 사용하는 스트리밍 에디터이다. 찾기(search), 출력(print), sed -..
디스크 사이즈보다 작게 파티션이 할당된 경우 남은 용량을 이용하여 resizing이 가능 로 파일 시스템 정보 확인 $df -h Filesystem Size Used Avail Use% Mounted on/dev/xvda 7.8G 1.5G 92G 2% /tmpfs 3.7G 0 3.7G 0% /dev/shm $fdisk -lDisk /dev/xvda: 107.4 GB, 107374182400 bytes255 heads, 63 sectors/track, 13054 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): ..
강좌 http://www.itdaily.kr/news/articleView.html?idxno=64167
- awk 명령어 사용법http://www.dreamy.pe.kr/zbxe/CodeClip/6332 - awk 관련 글들http://jikime.tistory.com/378http://mydoc.digimoon.net/board/skin/ggambo7002_board/print.php?id=board&no=343 - sed 및 awk 사용법http://egloos.zum.com/slog2/v/3689816 - 예제로 배우는 awk/필드와 레코드hhttps://ko.wikibooks.org/wiki/%EC%98%88%EC%A0%9C%EB%A1%9C_%EB%B0%B0%EC%9A%B0%EB%8A%94_AWK/%ED%95%84%EB%93%9C%EC%99%80_%EB%A0%88%EC%BD%94%EB%93%9C -..
python 에서 setuptools 를 설치하면 easy_install 을 이용하여 필요한 패키지를 쉽게 설치할 수 있다.- python setuptools 관련 페이지 https://pypi.python.org/pypi/setuptools 리눅스의 # wget https://bootstrap.pypa.io/ez_setup.py -O - | python# easy_install
출처: http://stackoverflow.com/questions/14977943/how-to-export-jsp-table-to-excel-xlsx-format -------------------------------------------------------------------------------- tableToExcel Demo tableToExcel Demo Exporting the W3C Example Table
** 각 라인별로 ssh 작업 등을 할 때는 구) 의 내용은 에러가 발생한다. 아래와 같이 cat 으로 파일을 열어 라인별로 받아오는 방법을 권장 #!/bin/bash exec < [파일명] while read linedo echo $linedone or #!/bin/bash for line in `cat test.txt` $linedone ** line에 띄어쓰기가 있는 경우 문제됨 ---------------------------------------------구)#!/bin/bash for file in 'test.txt' ; do while read line ; do $line done < $filedone