~spacexplorer/+junk/myenv

« back to all changes in this revision

Viewing changes to zsh/dist/funcs/mkscriptpl

  • Committer: Kim Allamandola
  • Date: 2011-05-02 05:39:17 UTC
  • Revision ID: spacexplorer@gmail.com-20110502053917-x0yl2lr9ri4yskr2
InitĀ import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# miniscript che crea uno script python vuoto con permessi di 
 
2
# esecuzione e #! mechanism
 
3
 
 
4
# function mkscriptPy {
 
5
 
 
6
touch $1 && chmod +x $1 && print "#! /usr/bin/env perl\n" >> $1
 
7
 
 
8
# }