Improve example to include shebang line
Robin Smidsrød [Sun, 17 Mar 2013 13:20:11 +0000 (14:20 +0100)]
bin/fatpack
lib/App/FatPacker.pm

index e56350d..3e6cc93 100755 (executable)
@@ -65,7 +65,7 @@ Current basic recipe for packing:
   $ fatpack trace myscript.pl
   $ fatpack packlists-for `cat fatpacker.trace` >packlists
   $ fatpack tree `cat packlists`
-  $ (fatpack file; cat myscript.pl) >myscript.packed.pl
+  $ (head -n1 myscript.pl |grep '^#!'; fatpack file; cat myscript.pl) >myscript.packed.pl
 
 =head1 COPYRIGHT, LICENSE, AUTHOR
 
index 3de2e25..e4ca0aa 100644 (file)
@@ -248,7 +248,7 @@ App::FatPacker - pack your dependencies onto your script file
   $ fatpack trace myscript.pl
   $ fatpack packlists-for `cat fatpacker.trace` >packlists
   $ fatpack tree `cat packlists`
-  $ (fatpack file; cat myscript.pl) >myscript.packed.pl
+  $ (head -n1 myscript.pl |grep '^#!'; fatpack file; cat myscript.pl) >myscript.packed.pl
 
 See the documentation for the L<fatpack> script itself for more information.