일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ssh key 배포
- 로그인불가
- pfsense
- docker
- 보안양파
- elastic stack
- xe guest utilities
- Kibana
- hardening
- freebsd
- XCP-ng
- macos
- 한글가이드
- endpoint security
- Proxy
- centos 8
- miniconda
- bash
- proxycfg
- x-pack
- Kibana server is not ready yet
- GitLab
- Windows
- ansible
- Elasticsearch
- ELASTIC
- PlayBook
- G-suite
- application security
- Today
- Total
목록IT/Programming (66)
선 밖에 선 자유인
http://pythonstudy.xyz/ https://wikidocs.net/book/837 (Django)
- 정규식(Regular Expression)에 대한 소개와 입문, 튜토리얼https://tuwlab.com/ece/25809 - 온라인 정규식 테스트https://regex101.com/
- GNS3 Talks: Python for Network Engineers with GNS3https://youtu.be/IhroIrV9_7w - Intro-python-network-automation/http://packetpushers.net/intro-python-network-automation/ - Automating cisco using Ansiblehttps://learningnetwork.cisco.com/blogs/vip-perspectives/2017/08/10/automating-cisco-using-ansible
- python-data-analysishttps://youtu.be/nxSVZVVfMxM - Automate the Boring Stuff with Pythonhttps://youtu.be/1F_OgqRuSdI
exec < $1while read line do echo $line done while read line do echo $line done < $1 - 컬럼 별로 읽을 때 (test.txt)A B C D EF G H I J while read A B Cdo echo "${A},${B},${C}"done < test.txt
여러개의 라인,필드가 있는 csv 파일의 경우 텍스트 처리 - 필드 체크하여 중복된 필드가 포함된 라인 제거 후 출력 (4번째 필드 기준)$ awk -F',' '!x[$4]++ {print $0}' - 정력하면서 출력$ sort -u -t ',' -k4,4 - 특정 필드를 기준으로 sortsort -t ',' -k 3 orsort -t ',' -k 3 -r
- python3 >>> import ipaddress >>> int(ipaddress.ip_address('192.168.0.1')) 3232235521 >>> ipaddress.ip_address(3232235521) IPv4Address('192.168.0.1') >>> int(ipaddress.ip_address(3232235521)) 3232235521 >>>
sed -n '//,//p' filenameawk '//,//' filename