mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-22 12:17:40 +01:00
10 lines
299 B
Tcl
10 lines
299 B
Tcl
|
#/usr/bin/tclsh
|
||
|
#
|
||
|
# This is a TCL script that copies multiple files into a common directory.
|
||
|
# The "cp" command will do this on unix, but no such command is available
|
||
|
# by default on Windows, so we have to use this script.
|
||
|
#
|
||
|
# tclsh cp.tcl FILE1 FILE2 ... FILEN DIR
|
||
|
#
|
||
|
file copy -force -- {*}$argv
|