一种使用文件行作为来自 linux shell 命令的参数的衬垫

One liner to use lines of a file as parameters for a command from linux shell

我有一个充满文件名的文件,例如:

modified_files.txt

mydir/file1.cpp
mydir/file2.cpp
mydir/file3.cpp

我有一个 VCS,其签入语法如下:

mytool checkin -c "comment" filename

有没有一种简单的方法可以将 modified_files.txt 的行输出到我的 VCS 工具的结束参数?

测试以下行。
当回声看起来不错时,删除回声就完成了。

cat modified_files.txt | xargs echo mytool checkin -c "comment"