[Audit] Add an audit-related vconf key
[platform/core/appfw/vconf-internal-keys.git] / create_get_cmd.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/>
5 <xsl:strip-space elements="*"/>
6 <xsl:template match="/">
7 #!/bin/bash
8   <xsl:apply-templates/>
9 </xsl:template>
10 <xsl:template match="vconfkey">
11 vconftool2 get "<xsl:value-of select="./@name"/>"
12 </xsl:template>
13 </xsl:stylesheet>
14