Posts
0
Comments
3
Joined
2 mo. ago
I use a Beelink SER5, but that's because I also plan to set it up to be a retro game console, in addition to streaming.
Reply
Ivan Cukic has ported the Bismuth window decoration to Plasma 6.
Reply
Do this instead to treat name as a locally scoped variable:
undefined
foo() { local name="$1" read -r -p "delete $name (default is no) [y/n]? " choice choice="${choice:-n}" echo "\$choice: $choice" } printf "%s\n" "foo" "bar" "baz" "eggs" "spam" | while read -r name; do foo "$name" done
Reply