The end-of-file character for files is “\32” (^Z) for all platforms. The source command will read files up to this character. This restriction does not exist for the read or gets commands, allowing for files containing code and data segments (scripted documents). If you require a “^Z” in code for string comparison, you can use “\032” or “\u001a”, which will be safely substituted by the Tcl interpreter into “^Z”.
A leading BOM (Byte order mark) contained in the file is ignored for unicode encodings (utf-8, unicode).
The -encoding option is used to specify the encoding of the data stored in fileName. When the -encoding option is omitted, the system encoding is assumed.
source foo.tcl source bar.tcl
Alternatively:
foreach scriptFile {foo.tcl bar.tcl} { source $scriptFile }
Copyright © 1993 The Regents of the University of California.
Copyright © 1994-1996 Sun Microsystems, Inc.
Copyright © 2000 Scriptics Corporation.
Licensed under Tcl/Tk terms
https://www.tcl.tk/man/tcl/TclCmd/source.htm