Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个备份脚本,它从用户输入中读取并压缩文件,然后是 tar.gz,但是有谁知道获取 bash 脚本以接受来自文件的参数的语法。
例如
bash 脚本就像
tar cvf /arg1
在另一个config.txt文件中它看起来像
config.txt
/home/user/
用法类似于backup.sh config.txt,我会提取配置位置文件并将其输入脚本并执行它。
有任何想法吗 ?
干杯
tar cvf $(<"$1")
这将从命令行获取第一个参数,读取其内容,并将其用作tar.
tar