about summary refs log tree commit diff
path: root/Functions/Example
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2007-12-13 22:20:58 +0000
committerClint Adams <clint@users.sourceforge.net>2007-12-13 22:20:58 +0000
commit75c0f5cde8994b3bc3b277263311d8ac553435c9 (patch)
tree2277d52f8be19ab31729062803ad8e0c6eb9ae68 /Functions/Example
parentc48b70d59e8c9df2c8999ffbdc603052fb609730 (diff)
downloadzsh-75c0f5cde8994b3bc3b277263311d8ac553435c9.tar.gz
zsh-75c0f5cde8994b3bc3b277263311d8ac553435c9.tar.xz
zsh-75c0f5cde8994b3bc3b277263311d8ac553435c9.zip
24242: unify top lines as #!/bin/zsh (followed by options).
Diffstat (limited to 'Functions/Example')
-rw-r--r--Functions/Example/cat2
-rw-r--r--Functions/Example/zless2
2 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Example/cat b/Functions/Example/cat
index 612deac03..15dd75b38 100644
--- a/Functions/Example/cat
+++ b/Functions/Example/cat
@@ -1,4 +1,4 @@
-#! /usr/local/bin/zsh -f
+#!/bin/zsh -f
 
 local file
 
diff --git a/Functions/Example/zless b/Functions/Example/zless
index 809ce35c7..58103bd8c 100644
--- a/Functions/Example/zless
+++ b/Functions/Example/zless
@@ -1,4 +1,4 @@
-#!/usr/bin/zsh -f
+#!/bin/zsh -f
 #
 # zsh function script to run less on various inputs, decompressing as required.
 # Author: Phil Pennock.  zsh-hacks@athenaeum.demon.co.uk