/doc/English/rules/gensource
#! | 19 lines | 17 code | 2 blank | 0 comment | 0 complexity | f3eb16e539d26661049975b4d6979c62 MD5 | raw file
1#!/bin/bash 2 3# This script just generates the full sources for user visual inspection, 4# saving it on the parent folder. 5# 6# $ ./gensource 7# ../rules.t2t generated 8# $ 9# 10# If you need to generate the HTML version, just use the original .t2t file 11# inside this folder: 12# 13# $ txt2tags rules.t2t 14# txt2tags wrote ../rules.html 15# $ 16 17txt2tags --dump-source rules.t2t > ../rules.t2t 18echo "../rules.t2t generated" 19exit 0