[SOFTAP] Add vconf key for softap
[platform/core/appfw/vconf-internal-keys.git] / check_dup.sh
1 #!/bin/bash
2 #--------------------------------------------------------------------
3 filelist=`ls ./data/*.xml`
4
5 for file in $filelist
6 do xmlstarlet sel -t -v "/vconfkeylists/vconfkey/@name" $file | sed 's/^ *//; s/ *$//; /^$/d'
7 done
8
9 #./check_dup.sh > ~/test.txt
10 #cat ~/test.txt | sort > ~/test1.txt
11 #cat ~/test.txt | sort -u > ~/test2.txt
12 #vimdiff ~/test1.txt ~/test2.txt