1# -*- tcl -*-
2# Implementation of 'readme'.
3
4# Available variables
5# * argv  - Cmdline arguments
6# * base  - Location of sak.tcl = Top directory of Tcllib distribution
7# * cbase - Location of all files relevant to this command.
8# * sbase - Location of all files supporting the SAK.
9
10package require sak::util
11package require sak::readme
12
13set raw  0
14set log  0
15set stem {}
16set tclv {}
17
18if {[llength $argv]} {
19    sak::readme::usage
20}
21
22sak::readme::run
23
24##
25# ###
26