87eb9e9a94
This is so that they can be run from the main Makefile, instead of having to edit them to put them inside the Makefile.
24 lines
682 B
XML
24 lines
682 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:text>#!/bin/bash
|
|
</xsl:text>
|
|
<xsl:apply-templates select="//userinput[contains(string(),'--bind') or
|
|
contains(string(),'/proc') or
|
|
contains(string(),'readlink') or
|
|
contains(string(),'-Rv')]"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="userinput">
|
|
<xsl:apply-templates/>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|