mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
24242: unify top lines as #!/bin/zsh (followed by options).
This commit is contained in:
parent
c48b70d59e
commit
75c0f5cde8
8 changed files with 12 additions and 7 deletions
|
@ -1,5 +1,10 @@
|
|||
2007-12-13 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 24242: Functions/Calendar/calendar_add, Functions/Example/cat,
|
||||
Functions/Example/zless, Functions/Misc/checkmail,
|
||||
Functions/Misc/run-help, Functions/Misc/zcalc, Functions/Misc/zkbd:
|
||||
unify top lines as #!/bin/zsh (followed by options).
|
||||
|
||||
* Peter: 24235: Completion/Base/Utility/_arguments: handle
|
||||
underscores.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/env zsh
|
||||
#!/bin/zsh
|
||||
|
||||
# All arguments are joined with spaces and inserted into the calendar
|
||||
# file at the appropriate point.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/local/bin/zsh -f
|
||||
#!/bin/zsh -f
|
||||
|
||||
local file
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/local/bin/zsh
|
||||
#!/bin/zsh
|
||||
#
|
||||
# This autoloadable function checks the folders specified as arguments
|
||||
# for new mails. The arguments are interpreted in exactly the same way
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/local/bin/zsh
|
||||
#!/bin/zsh
|
||||
#
|
||||
# Figure out where to get the best help, and get it.
|
||||
#
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/local/bin/zsh -i
|
||||
#!/bin/zsh -i
|
||||
#
|
||||
# Zsh calculator. Understands most ordinary arithmetic expressions.
|
||||
# Line editing and history are available. A blank line or `q' quits.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/zsh -f
|
||||
#!/bin/zsh -f
|
||||
|
||||
[[ -o interactive ]] && {
|
||||
local -i ARGC
|
||||
|
|
Loading…
Reference in a new issue