linux 将文件内容赋值给shell脚本中的变量

#!/bin/sh

  2 maildir=baikewaringmail
  3 lastVersion=/home/qiyi/datestr.txt
  4 mydatestr=`sed -n '1p' $lastVersion`//将文件内容的第一行赋值给变量 mydatestr
  5 echo "the datestr is $mydatestr"

你可能感兴趣的:(linux 将文件内容赋值给shell脚本中的变量)