gpt4 book ai didi

linux - 将变量列表传递给简单的 bash 命令

转载 作者:太空狗 更新时间:2023-10-29 12:05:42 27 4
gpt4 key购买 nike

我希望将文本文件中的变量列表传递到简单的 bash 命令中。基本上我有一个所有 linux 命令的列表 (commands.txt)。我想将该文件中的每个命令(每个命令都在一个新行上)传递给 man 命令并将每个命令打印到一个新的 .txt 文件,以便每个变量都将传递给此文件:

man $command > $command.txt

因此每个变量的手册页都会打印到其名称 .txt。请帮忙!我想在 bash 脚本中执行此操作,但任何可行的方法都将不胜感激。

最佳答案

使用内置命令读取:

cat commands.txt | while read command; do
man $command > $command.txt
done

关于linux - 将变量列表传递给简单的 bash 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13825040/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com