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.
wgetRuby のメソッドにコマンドを渡したいsystem(シェルにコマンドを渡さないバージョン 2)。任意の数の引数を持つ引数の配列[site1 site2 ...]をこのメソッドに渡すような方法はありますか?
wget
system
[site1 site2 ...]
*メソッドを含むメソッドを呼び出すときに、配列の前に splat 演算子を使用して配列を展開できますsystem。
*
sites = %w< site1 site2 ... > system 'wget', *sites