In bash, [ 010 -gt 8 ] would return true, while [[ 010 -gt 8 ]] and (( 010 > 8 )) would return false. 8. grep foo bar | while read -r; do (( ...
確定! 回上一頁