diff options
Diffstat (limited to 'files/.zsh/rc-10093352-sibsac/S10_functions')
| -rw-r--r-- | files/.zsh/rc-10093352-sibsac/S10_functions | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/files/.zsh/rc-10093352-sibsac/S10_functions b/files/.zsh/rc-10093352-sibsac/S10_functions index 91aa4d3..2d51014 100644 --- a/files/.zsh/rc-10093352-sibsac/S10_functions +++ b/files/.zsh/rc-10093352-sibsac/S10_functions @@ -1,3 +1,13 @@ open() { explorer $(cygpath -w "$*") } +wsdl2html() { + while : ; do + local fname="$1" + local out="$fname.html" + xsltproc /cygdrive/d/bobov/scripts/wsdl-viewer.xsl "$fname" > "$out" + echo "WSDL documentation file: $out" + shift + [[ $# -eq 0 ]] && break + done +} # vim: et ft=zsh : |
