Skip to content

Instantly share code, notes, and snippets.

View jetzerb's full-sized avatar

Bill Jetzer jetzerb

View GitHub Profile
@jetzerb
jetzerb / mRemoteNG_hosts.xslt
Last active March 13, 2020 18:49
XSLT to dump out the list of hosts from your mRemoteNG config file
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:output method="text" omit-xml-declaration="yes" />
<xsl:variable name="pad" select="' '" />
<!-- override the default template that prints all text -->
<xsl:template match="text()|@*" />