标签: tcl
我正在尝试使用tcl将文件复制到目标。
file copy $filename $destination
但是,我希望在复制文件时保留文件所有权。
例如:file copy file1.txt file2.txt
file copy file1.txt file2.txt
ls -l total 0 -rw-r--r-- 1 reshma root 0 Jan 10 08:34 file1.txt -rw-r--r-- 1 root root 0 Jan 10 08:34 file2.txt
如何在复制时保留文件所有权?