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.
私はPerl構文の初心者であり、基本的なワイルドカードの質問があります。次のすべてのファイルを取得できる式を探しています。
/home/test-1.txt /home/test-2.txt /home/test-3.txt
ファイルI/Oではなく、実際のワイルドカード式に関心があります。
</home/test-*.txt>必要なファイルをグロブする必要があります。
</home/test-*.txt>
glob("/home/test-*.txt")同じことをします。
glob("/home/test-*.txt")
これが短いグロブチュートリアルです。