我有這個Makefile代碼:如何拆分Makefile中使用的類似於路徑名的字符串?
%.spf:
@echo [email protected];
runMe.sh $1 $2 $3 $4 $5;
的%.spf
的例子值是:
ros_apple/bananas_go_while_197815:123.0/monkey_110_worst_forever/thestar.spf
我會如何提取文件名的參數到變量?
$1 = ros_apple
$2 = bananas_go_while_197815:123.0
$3 = worst
$4 = 110
$5 = thestar
是否有可能留在Makefile文件中或者說我要創造一些Perl腳本,需要在[email protected]
並做內殼通話?
我只是將東西管入perl中並調用另一個shell – Gordon 2011-02-08 16:07:35