Subject: | Add no argument example |
Man page says:
EXAMPLES
perltidy somefile.pl
This will produce a file somefile.pl.tdy containing the script reformatted using the default options, which
approximate the style suggested in perlstyle(1). The source file somefile.pl is unchanged.
perltidy *.pl
Execute perltidy on all .pl files in the current directory with the default options. The output will be in files
with an appended .tdy extension. For any file with an error, there will be a file with extension .ERR.
OK, but before the second, please add:
perltidy < somefile.pl
This will put the output instead on stdout.