-2

このperlスクリプトをオンラインで見つけましたが、使い方がわかりません。実行すると、空のターミナルが開きます。ターミナルを機能させるために何を入れるべきかわかりません。

スクリプトはここにあります:http ://www.ve3syb.ca/software/gimp/script-update.pl

手伝ってくれてどうもありがとう。

4

2 に答える 2

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
于 2011-07-04T13:33:51.347 に答える
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;
    }
于 2011-07-04T13:32:46.613 に答える