Artifact 07e25e6903cbac968badeca489ca3ecb43052a2a:
- Executable file initrd/admin-tclkit/kitcreator-modules/system/stringify.tcl — part of check-in [1dddebba6a] at 2012-08-05 21:38:27 on branch trunk — Brought system to basic bootable state (early-boot) (user: rkeene, size: 405) [annotate] [blame] [check-ins using]
#! /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 -nonewline [stringifyfile $file] } exit 0