Welcome to mirror list, hosted at ThFree Co, Russian Federation.

guidgen.sh « win « installer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2b3c09f169027f5fe24526690c1b9dee72b76b4 (plain)
1
2
3
4
5
6
7
#!/bin/bash


cat res_files.txt | while read line; do
  GUID=`'/c/Program Files/Microsoft SDKs/Windows/v7.1/Bin/Uuidgen.Exe'`
  echo "$GUID $line"
done