read start _ < <(ls -1l | wc -l); echo $start
In particular:
- the underscore after read command
- the second minus (<)
- how does the "echo $var1" take the value of previous command
The original code:
read start _ < <(du -bcm kali-linux-2016.2-amd64.iso | tail -1); echo $start
I have just simplify the code because i'm interested in the syntax