ibm1620 has asked for the wisdom of the Perl Monks concerning the following question:
Here's the command I'm using:
pp -v=3 -a /Users/chap/private/dict/lex.dict -o ppdir/brillig brillig
Verbose output includes the line:
adding /Users/chap/private/dict/lex.dict as Users/chap/private/dict/lex.dictThe pp documentation of the -a switch is as follows:
-a, --addfile=FILE|DIR Add an extra file into the package. If the file is a directory, recursively add all files inside that directory, with links turned into actual files.I don't understand the bolded sentence. What path should my Perl code use to access lex.dict?By default, files are placed under / inside the package with their original names. You may override this by appending the target filename after a ; like this: % pp -a "old_filename.txt;new_filename.txt"
Thanks!
|
|---|