#!/bin/bash

NEW_OPTION=$1
[ -z "$NEW_OPTION" ] && { echo "Usage: $0 <NewOptionName>"; exit -1; }

touch ${NEW_OPTION}.desc.txt
touch ${NEW_OPTION}.examples.txt
touch ${NEW_OPTION}.hints.txt
touch ${NEW_OPTION}.short.txt
touch ${NEW_OPTION}.syntax.txt

# end of file
