list(6)
-
AWS CLI cheat sheet
- 개요 AWS CLI를 통해 리소스를 관리하고 리스트화 할 수 있는 스크립트를 정리했다. 대표적인 리소스를 테이블 또는 리스트로 관리할 수 있는 스크립들이다. - AWS CLI https://awscli.amazonaws.com/v2/documentation/api/latest/reference/index.html#cli-aws - EC2 ## runnung ec2 with Name, PrivateIP, PublicIP, Status, Instance Type, VpcId on table aws ec2 describe-instances --query "Reservations[*].Instances[*].{PublicIP:PublicIpAddress,PrivateIP:PrivateIpAddress,Nam..
2023.10.10 -
slack rss app 추가
- 개요 Slack 채널에 양질의 RSS Feed를 추가하여 최선 정보 및 트렌드를 빠르게 전달 받는 방법 - slack 채널 생성 후 RSS app 추가 https://slack.com/intl/ko-kr/help/articles/218688467-Slack%EC%97%90-RSS-%ED%94%BC%EB%93%9C-%EC%B6%94%EA%B0%80 - feed 관리 # 피드리스트 /feed list # 피드 구독추가 /feed subscribe # 피드 구독 취소 /feed remove - 추천 피드 Google Search Status Dashboard Updates URL: https://status.search.google.com/en/feed.atom MSRC Security Update Gui..
2022.12.15 -
ubuntu package update
- 개요 ubuntu에서 패키지 업데이트 준비 밎 진행하는 방법 - 상세 설명 ## 업데이트 대상 목록 업데이트 apt-get update ## 업데이트 대상 목록 확인 apt list --upgradable ## 업데이트 대상중 선택해서 업데이트 apt --only-upgrade install ## 업데이트 대상 전체 업데이트 apt upgrade
2022.12.12 -
AWS VPC에 할당된 전체 리소스 확인
- 개요 AWS 특정 VPC에 할당된 리소스를 전부 확인할 수 있는 스크립트 - 스크립트 (vpclist.sh) #!/bin/bash vpc="$1" region="ap-northeast-2" aws ec2 describe-vpc-peering-connections --region $region --filters 'Name=requester-vpc-info.vpc-id,Values='$vpc | grep VpcPeeringConnectionId aws ec2 describe-nat-gateways --region $region --filter 'Name=vpc-id,Values='$vpc | grep NatGatewayId aws ec2 describe-instances --region $region -..
2022.11.08 -
ECR repository life-cycle-policy 확인
- 개요 ECR에서 repository를 생성할 경우 LifeCyclePolicy가 기본적으로 없이 생성되므로 과금의 원인이 된다. 아래는 기 존재하는 repository의 LifeCyclePolicy가 있는지 확인해주는 스크립트 이다 - 스크립트 #!/bin/bash for i in $(aws ecr describe-repositories --query 'repositories[*].repositoryName[]' --output text) do ecr=$(aws ecr get-lifecycle-policy --repository-name $i 2>/dev/null) if [ $? == 0 ]; then echo good else echo $i has no life cycle policy fi done
2022.11.04 -
powershell command (cp, list, rename, find, count)
- 개요 Windows Power Shell에서 사용하는 기본 명령어에 대해 정리 했다. - 예시 txt로 끝나는 파일 리스트 Get-ChildItem *txt wav로 끝나는 파일 리스트를 walist라는 파일로 저장 Get-ChildItem -filter *wav > wavlist.txt txt로 끝나는 파일이름을 log로 끝나는 파일이름으로 변경 Get-ChildItem *txt | Rename-Item -NewName { $_.Name -Replace 'txt', 'wav'} json으로 끝나는 파일 갯수 count (Get-ChildItem -filter *json | Measure-Object).Count 현재 폴더의 파일 갯수 count (Get-ChildItem -Recurse -File ..
2020.11.06