Dev0ps
39 subscribers
219 photos
3 videos
51 files
3.35K links
Download Telegram
Forwarded from AWS Notes
AWS Secrets Manager secrets - вставляем в окружение и сохраняем на диск

Достойные "напосмотреть" утилитки для работы с секретами — одна позволяет инжектировать их в окружение:

https://github.com/sgreben/aws-secretsmanager-env

А другая — в файлы:

https://github.com/sgreben/aws-secretsmanager-files

Нет возможности работы в мульти-аккаунте - вещь свежая, наверняка допилят. Кто любит #Go - может понравиться.

#Secrets
🖥 Cod определяет использование ключа --help у запущенной команды, и предлагает запомнить опции, которые этой команде соответствуют.

"Научив" утилиту доступным для команд опциям, мы получаем возможность автокомплита не только для самих команд, но и для опций, с которыми эти команды могут быть запущены.

#будничное #github #cli
lisa19_maheshwari.pdf
372.7 KB
Linux Productivity Tools - 89 слайдов об очевидном (и не очень) применении утилит в работе с cli. Хорошая презентация, как по мне. #shell #cli
Forwarded from GitHub'ненько
Terminus is a highly configurable terminal emulator for Windows, macOS and Linux
#terminal #cli #windows
https://github.com/Eugeny/terminus
Forwarded from ITGram
+ jqCLI JSON processor written on С. Allows to extract data from JSON, modify it, supports math, variables, regexes, even has a lot of built-in functions. Installable from Debian repositories.

+ jqplay.org — online playground for jq. Great to try it, debug expressions, have a handy cheat sheet.

+ gjson — must-have Go library to get values from a complex deeply nested JSON. Has a simple and intuitive syntax.

+ jjCLI tool written on Go, wrapper around gjson. Hence less powerful than jq but much simpler and more friendly.

#golang #cli
Forwarded from ITGram
🐚 scc is amazingly fast CLI tool to count lines of code in the project. The results are grouped by language, include comments count, approximately calculates code complexity. It lost some files in one of the projects i tested it on but so.

#cli
Forwarded from ITGram
🔧 croc is a tool to transfer files between machines. Fast, simple, powerful, peer-to-peer, no need for local network. 🔥!

#cli
Forwarded from GitHub'ненько
Linux shell for iOS
A project to get a Linux shell running on iOS, using usermode x86 emulation and syscall translation.
#ios #terminal #cli
https://github.com/ish-app/ish
🗜 Я же писал про этакое эстетическое удовольствие от созерцания и использования tui утилит? Тут вот целый awesome лист таких подвезли. И это прекрасно, ящетаю. https://github.com/rothgar/awesome-tuis

#tui #будничное #cli
Forwarded from GitHub'ненько
xh is a friendly and fast tool for sending HTTP requests. It reimplements as much as possible of HTTPie's excellent design.
#rust #cli #curl
https://github.com/ducaale/xh
⚙️ An Opinionated Guide to xargs. Практика применения xargs.

#xargs #cli #будничное
🔩 Viddy - современный аналог команды watch, который позволяет не просто наблюдать за происходящим, но и "перематывать" действия во времени.

https://github.com/sachaos/viddy

#cli #viddy #фидбечат
Forwarded from Sysadmin Tools 🇺🇦
sake is a CLI tool that helps you configure servers, think of it like make but for servers

Demo

https://github.com/alajmo/sake

#tool #cli #golang
Forwarded from Sysadmin Tools 🇺🇦
bombardier - fast cross-platform HTTP benchmarking tool written in Go

https://github.com/codesenberg/bombardier

#go #benchmarking #bombardier #cli #golang #http #linux #load_testing
Forwarded from GitHub'ненько
Prowler is an Open Source security tool to perform AWS, Azure, Google Cloud and Kubernetes security best practices assessments, audits, incident response, continuous monitoring, hardening and forensics readiness, and also remediations!
#security #cli #compliance #hardening #devsecops #cloud
https://github.com/prowler-cloud/prowler
Forwarded from GitHub'ненько
CLI tool and library for generating a Software Bill of Materials from container images and filesystems

Syft is a powerful and easy-to-use open-source tool for generating Software Bill of Materials (SBOMs) for container images and filesystems. It provides detailed visibility into the packages and dependencies in your software, helping you manage vulnerabilities, license compliance, and software supply chain security.
#sbom #security #cli #devsecops
https://github.com/anchore/syft
Forwarded from GitHub'ненько
jira-cli.gif
33.2 MB
jira-cli

JiraCLI is an interactive command line tool for Atlassian Jira that will help you avoid Jira UI to some extent. This tool may not be able to do everything, but it has all the essential features required to improve your day-to-day workflow with Jira.

🔥 Feature-rich interactive Jira command line.
#jira #cli #golang
https://github.com/ankitpokhrel/jira-cli

# List recent issues
$ jira issue list

# List issues created in last 7 days
$ jira issue list --created -7d

# List issues in status "To Do"
$ jira issue list -s"To Do"

# List recent issues in plain mode
$ jira issue list --plain

# List issue in the same order as you see in the UI
$ jira issue list --order-by rank --reverse

# You can execute raw JQL within a given project context using `--jql/-q` option.
# For instance, the following command will list issues in the current project whose
# summary has a word cli.
$ jira issue list -q "summary ~ cli"