I have a few commands i run between brackets which i then redirect to a named pipe and tail the pipe however it looks like the redirection happens only after the block has finished executing as i don't see any output from the tail command for a while and it only shows the last command ouput when i do. Any ideas how view the output of the block in realtime?
Example Script
#!/usr/bin/env bash
mkfifo /tmp/why_you_no_out; 
trap "rm /tmp/why_you_no_out" 0;
{ 
    for ((i=1;i<=100;i++)); do 
        printf "$i"; 
    done 
    sleep 10s; 
    printf "\n12356"; 
} >> /tmp/why_you_no_out & 
printf "here"; 
tail -n 1 -f /tmp/why_you_no_out
 
     
    