2012年10月12日星期五

assign command output to a shell variable

1.    OUTPUT=$(ls -1)
  echo $OUTPUT

2.  OUTPUT=$`ls -1`
  echo $OUTPUT

3.  VAR1="something"
  MOREF=$(sudo run command against $VAR1 | grep name | cut -c7-)

没有评论:

发表评论