SHELL常见24个错误.pdfVIP

  • 2
  • 0
  • 约2.87千字
  • 约 7页
  • 2017-05-29 发布于浙江
  • 举报
SHELL常见24个错误

for i in `ls *.mp3`; do # Wrong! for i in `ls *.mp3`; do # Wrong! for i in *.mp3; do fi cp $file $target cp -- $file $target for i in ./*.mp3; do cp $i /target ... [ = bar ] [ multiple words here = bar ] [ $foo = bar ] # [[ $foo = bar ]] # [ x$foo = xbar ] # [ bar = $foo ] # cd `dirname $f` cd $(dirname $f) [ bar = $foo -a foo = $bar ] # Right![ bar = $foo ] [ foo = $bar ] # Also right![[ $foo = bar $bar = foo ]] #

文档评论(0)

1亿VIP精品文档

相关文档