Sad failure for my YouTube archiving shell script as it runs into a video with a title of 3 Unicode whitespace characters from a channel with a name consisting of 5 hieroglyphics.

Probably time to work on migrating it to a sensible language…

#Bash #Go

War, climate among high priority topics at Davos meeting

#comic #unix_surrealism #linux #art #mastoart #computers #bash #dillo #lgbt

Пять проблем Bash, которые ломают скрипты в самый неудачный момент

Bash прощает многое: можно писать кривые скрипты годами, и они будут работать. Кривизна вылезает, как правило, в самый неподходящий момент. В статье рассмотрим пять ошибок, которые встречаются даже в проектах с опытными админами, потому что поведение Bash в этих местах неинтуитивно и плохо документировано в одном месте.

https://habr.com/ru/companies/otus/articles/1039854/

#Bash #Linux #скрипты #shell #subshell #set_e #pipefail #trap #nullglob #обработка_ошибок

Пять проблем Bash, которые ломают скрипты в самый неудачный момент

Bash прощает многое: можно писать кривые скрипты годами, и они будут работать. Кривизна вылезает, как правило, в самый неподходящий момент. В статье рассмотрим пять ошибок, которые...

Хабр

I've finally got my hand on xargs usage.

It's about time. A while ago i would have used a for loop

# get list of installed php 8.1 package, install their 8.4 version

```bash
rpm -qa --queryformat="%{NAME}\n" | grep php81 | sed -e 's/81/84/' | xargs -t sudo dnf install
```

#sysadmin
#linux
#bash

Wohin mit Daten › Shell und Programmieren › Fortgeschrittene Themen › Forum › ubuntuusers.de

How to set a variable from a multiline file in GitHub #commandline #bash

https://askubuntu.com/q/1567212/612

How to set a variable from a multiline file in GitHub

This is more a bash scripting question. I'm trying to set a variable from a multiline file in GitHub. cat config.yaml | gh variable set TEST --org .... --body - ...but this sets the value as '-' It...

Ask Ubuntu

It's amazing how much #Bash trips over itself to do stuff as asked.

If sleep ... *it's sleeping
*wakes up … did that, true!

⌨️ Gagne du temps sur ton terminal !
Je partage mon fichier d'alias Bash pour administrer Nginx Proxy Manager, Fail2Ban et GeoIP en un clin d'œil.
👉 https://wiki.blablalinux.be/fr/alias-bash-npm-fail2ban-geoip 🚀
#Linux #Bash #SysAdmin #Nginx #Productivité

Understanding Bash Function Arguments and Return Values

https://www.linuxteck.com/bash-function-arguments-and-return-values/

Bash functions don't return strings the way many programming languages do.

This guide explains function arguments, positional parameters, return codes, command substitution, and practical patterns for writing cleaner shell scripts.

#linux #bash #shellscripting #opensource #devops #linuxteck

Release v1.2.9 · shellgei/rusty_bash

Adding some features We added some features related to the cases in https://github.com/shellgei/rusty_bash_test/blob/v1.2.9/test_fixed.bash . Full Changelog: v1.2.7...v1.2.9 Completion of coproc im...

GitHub