diff options
| author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:26:49 +0000 |
|---|---|---|
| committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:26:49 +0000 |
| commit | d56202de5d83bc4e1ed08a78065bc0c28895a6a8 (patch) | |
| tree | f552002cdb107205a78d88aac185ae76e8836271 /Functions | |
| parent | moved to ./Functions/Example/proto (diff) | |
| download | zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar.gz zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar.bz2 zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar.lz zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar.xz zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.tar.zst zsh-d56202de5d83bc4e1ed08a78065bc0c28895a6a8.zip | |
moved from ./Functions/Misc/proto
Diffstat (limited to 'Functions')
| -rw-r--r-- | Functions/Example/proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Functions/Example/proto b/Functions/Example/proto new file mode 100644 index 000000000..df1826506 --- /dev/null +++ b/Functions/Example/proto @@ -0,0 +1,8 @@ +#! /bin/sh +# generate prototypes, if your style is the same as mine +for i +do + rm $i:r.pro 2>/dev/null + grep -v '[{};:#]' $i | grep '^[A-Za-z]' | + grep -v static | sed 's/$/;/' >! $i:r.pro +done |
