File: win32_cubedoc2xhtml.ps1

package info (click to toggle)
assaultcube-data 1.1.0.4%2Brepack1-2.1
  • links: PTS, VCS
  • area: non-free
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 56,240 kB
  • ctags: 5
  • sloc: xml: 4,718; sh: 132; makefile: 18
file content (8 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
$files = dir ..\* -include *.html

foreach($f in $files)
{
    $in = $f.FullName
    $out = [system.io.path]::ChangeExtension($f.FullName, "html")
    msxsl.exe -o "$out" -v "$in" ..\transformations\cubedoc2xhtml.xslt
}