2026-07-22 16:37:03
#FollowerPower
why does that split neither in #bash nor #dash:
```
$ echo "loc@hos" | IFS=@ read -r loc hos
```
Edit: got it,
This might come #handy for people. A while ago I asked in #bash on @… for an #incognito
#TIL In bash you can create multiple (nested) directories with a single compact line:
❯ mkdir -p a/{b,c/{x,y},d/{e,f}}
❯ tree
.
└── a
├── b
├── c
│ ├── x
│ └── y
└── d
├── e
└── f
I'm really enjoying making small scripts in #AmberLang
#bash, a cool concept!
Below an example of a helper I use to copy to clipboard the remote link for the file I have currently open in #HelixEditor (complete with the range of lines in my selection).
#scripting #ScriptingLanguage #bash_scripting