您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

gen_reserved.sh 124B

123456
  1. #!/bin/bash
  2. if [ -f $1 ];then
  3. cat $1| awk '{printf("\""$1"\":true,\n")}'
  4. else
  5. echo "argument $1 if not a file!"
  6. fi