lemmyreader@lemmy.ml to Linux@lemmy.ml · 2 years agoBeyond Bash: 9 Lesser-Known Linux Shells and Their Capabilitiesitsfoss.comexternal-linkmessage-square19fedilinkarrow-up125arrow-down10file-text
arrow-up125arrow-down1external-linkBeyond Bash: 9 Lesser-Known Linux Shells and Their Capabilitiesitsfoss.comlemmyreader@lemmy.ml to Linux@lemmy.ml · 2 years agomessage-square19fedilinkfile-text
minus-square☆ Yσɠƚԋσʂ ☆@lemmy.mllinkfedilinkarrow-up1arrow-down1·2 years agoLooks like the latest version streams output from one command to the other. For example, when I run for i in (seq 1 5); sleep 1; echo $i; end | cat I see the numbers show up one at a time.
Looks like the latest version streams output from one command to the other. For example, when I run
for i in (seq 1 5); sleep 1; echo $i; end | cat
I see the numbers show up one at a time.