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.
exp.pl perl スクリプトを実行する exp.bat という名前のバッチ ファイルがあります。コマンドプロンプトからbatを実行するとき、perl sciptに値を渡す必要があります.それは可能ですか.TIA
最小限の.pl:
use strict; use warnings; print join "*", @ARGV;
最小限の .bat:
@perl exp.pl %*
使用法/デモ:
exp.bat a "b c" d a*b c*d