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.
これはおそらく非常に単純ですが、IP のリスト (おそらく 4,000 以上あります) に「すべてから拒否」(「すべて」の後にスペースを入れて) を追加する方法を知りたいと思います。
ファイルの各行には、単一の IP アドレスが含まれています。
試してください(テストされていません):
sed -e 's/^/Deny from all /' infile
awkでそれを行う:
awk '{print "deny from all " $0}' < infile > outfile