File kitsh/buildsrc/kitsh-0.0/stringify.tcl artifact 100818685a part of check-in 44e0b4f94c
#! /usr/bin/env tclsh proc stringifyfile {filename {key 0}} { catch { set fd [open $filename r] } if {![info exists fd]} { return "" } set data [read -nonewline $fd] close $fd foreach line [split $data \n] { set line [string map [list "\\" "\\\\" "\"" "\\\""] $line] append ret " \"$line\\n\"\n" } return $ret } foreach file $argv { puts [stringifyfile $file] } exit 0