#testing read command read -p "Enter you name:" name echo "Hello $name, welcome to my program." 这下好理解了,有前有后了。到这里才是真正理解了read的作用。 理解了while和read的基本用法,才能理解jimmy老师的 xhsys@xh:/mnt/e/NGS/RSEMresults$ls D[123]*.isoforms.results|whileread id;doecho...
但这个脚本死活只能读取第一行数据。我认为是 read 返回了非 0 值导致提前结束。 如果把 ssh 去掉,就可以读取多行,一切正常。故怀疑 ssh ,因为 find 可能会遇到错误从而返回 1 ,难道 read 会直接用 ssh 的返回值? 然后把脚本改成: #!/bin/bash while read blk ip; do echo goto $ip to delete $blk....