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 | 31 |
Tags
- docker
- G-suite
- application security
- GitLab
- 한글가이드
- ssh key 배포
- 보안양파
- ansible
- macos
- PlayBook
- hardening
- miniconda
- ELASTIC
- pfsense
- x-pack
- Proxy
- Elasticsearch
- freebsd
- XCP-ng
- elastic stack
- proxycfg
- 로그인불가
- Kibana server is not ready yet
- centos 8
- endpoint security
- xe guest utilities
- Kibana
- Windows
- bash
Archives
- Today
- Total
목록IT/Programming (66)
선 밖에 선 자유인
powershell 5.1 관련 문서
https://docs.microsoft.com/ko-kr/powershell/scripting/powershell-scripting?view=powershell-5.1
IT/Programming
2017. 9. 8. 17:09
간단한 ping test script
#!/bin/bash for i in `cat ` do ping -q -c2 $i > /dev/null if [ $? -eq 0 ]; then echo $i " : Success" else echo $i " : Fail" fi done
IT/Programming
2017. 8. 7. 16:17
Run powershell command in batch file
- bat 파일에서 powershell command 사용하는 방법powershell -Command "& {; }" - Ex)@echo offpowershell -Command "& {get-service; }"
IT/Programming
2017. 7. 24. 10:57
파워쉘 튜토리얼
http://powershelltutorial.net/
IT/Programming
2017. 7. 24. 10:31
sed 로 태그 제거 방법
aaa에서 태그를 제거하고 내용만 추출하고 싶은 경우 sed -e 's///;s///'
IT/Programming
2017. 6. 19. 18:25
빅데이터 무료 강좌
http://cyber.dbguide.net/lecture.php?code=AA017
IT/Programming
2017. 6. 19. 17:58
파이썬 기초 사이트
요즘 파이썬 초보자들을 위한 좋은 사이트들이 많네http://pythonstudy.xyz/python/article/20-%EC%98%88%EC%99%B8%EC%B2%98%EB%A6%AC
IT/Programming
2017. 6. 19. 10:15
awk 에서 특정 필드 이후의 모든 필드 출력
$ awk '{k=""; for(i=4; i
IT/Programming
2017. 5. 11. 11:25