blob: 2d51014ea25a2872dfcbf2435424e97effd8082e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 :
|