You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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