2011-07-04 10 views
-2

私はこのperlスクリプトをオンラインで見つけましたが、私はそれをどのように使用するのか分かりません。私はそれを実行すると、それは空の端子を開きます。私はそれを動作させるために端末に何を入れるべきかわからない。このPerlスクリプトの使い方は?

スクリプトはここで見つけることができます:http://www.ve3syb.ca/software/gimp/script-update.pl

はあなたの助けのためにありがとうございました。

答えて

3

、スクリプトのヘルプテキストはこれを言う:

print "Usage: $0 [-h|--help|-from xx|-to yy]\n"; 
    print "  -from xx Script was written for version xx of GIMP\n"; 
    print "  -to yy Output script for use with version yy of GIMP\n"; 
    print "\n"; 
    print "GIMP version number should be one:\n"; 
    print "  10, 12, 20, 22, 24, or 26\n"; 
    print "\n"; 
    print "  The script to be updated is read from stdin.\n"; 
    print "  The updated script is written to stdout.\n"; 
    print "\n"; 

はこのようにそれを呼び出す:

./script.pl -from XX -to YY <input> output 
1

使用方法はスクリプトに記載されています。使用方法は、使用方法を説明しています。とりわけ、更新されるスクリプトに関するビットはstdinから読み込まれることに注意してください。おそらく、スクリプトをそのスクリプトにリダイレクトまたはパイプする必要があります。うまく

if ($arg eq "-h" || $arg eq "--help") 
    { 
     print "Usage: $0 [-h|--help|-from xx|-to yy]\n"; 
     print "  -from xx Script was written for version xx of GIMP\n"; 
     print "  -to yy Output script for use with version yy of GIMP\n"; 
     print "\n"; 
     print "GIMP version number should be one:\n"; 
     print "  10, 12, 20, 22, 24, or 26\n"; 
     print "\n"; 
     print "  The script to be updated is read from stdin.\n"; 
     print "  The updated script is written to stdout.\n"; 
     print "\n"; 
     exit; 
    } 
関連する問題