#! /bin/sh

awk '{
  if(match($1,"[A-Z0-9_]=")){
    sub("="," ")
    $0="set("$0")"
  }
  print 
}'
