this post was submitted on 17 Feb 2025
6 points (87.5% liked)

Bash

867 readers
1 users here now

Talk about the Bash Shell and Bash scripting

founded 4 years ago
MODERATORS
 

why I can't pass my input in foo function

foo() {
	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

Expected result:

delete foo (default is no) [y/n]? USER_INPUT
$choice: USER_INPUT
delete bar (default is no) [y/n]? USER_INPUT
$choice: USER_INPUT
# truncated

Actual output:

$choice: bar
$choice: eggs
$choice: n

[!NOTE] Actual output produced without user interaction

you are viewing a single comment's thread
view the rest of the comments
[–] e55am@programming.dev 3 points 1 month ago

Sorry, I've dropped done by mistake when I pasted my snippet.

And thanks for your explanation, but I didn't fully understand how this happened.