mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 13:01:29 +01:00
7 lines
108 B
Bash
7 lines
108 B
Bash
|
#!/bin/bash
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Usage: $0 <format>"
|
||
|
exit 1
|
||
|
fi
|
||
|
xmlto $1 index.xml --skip-validation
|