zsh-users
 help / color / mirror / code / Atom feed
* ./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution in a shell script -
@ 2017-05-08 20:58 shirish शिरीष
  2017-05-08 22:29 ` Daniel Shahaf
  0 siblings, 1 reply; 2+ messages in thread
From: shirish शिरीष @ 2017-05-08 20:58 UTC (permalink / raw)
  To: zsh-users

Dear Friends,

Please CC me as I'm not subscribed to the list.

I have the following script -

─[$] cat pkg-search.sh
     1	for file in /usr/share/doc/*/changelog.Debian.gz; do
     2	    package=${file:15}
     3	    package=${package%%/*}
     4	    echo -n "$package "
     5	    date -d "$(zgrep "\\-\\- .* <.*>  .*" $file|tail -n 1|awk
'BEGIN { FS="  " } { for (i = 2; i <= NF; i++) { if (i > 2) printf "
"; printf "%s", $i } }')" +%s
     6	done | sort -k2,2nr -k1


Trying to run the script under zsh I get the following -

[$] ./pkg-search.sh
./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution

I am running zsh 5.3.1

[$] zsh --version
                                                             [2:35:24]
zsh 5.3.1 (x86_64-debian-linux-gnu)

On Debian testing/stretch with the latest updates .

Look forward to know what's wrong in the above script.

-- 
          Regards,
          Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
EB80 462B 08E1 A0DE A73A  2C2F 9F3D C7A4 E1C4 D2D8


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: ./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution in a shell script -
  2017-05-08 20:58 ./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution in a shell script - shirish शिरीष
@ 2017-05-08 22:29 ` Daniel Shahaf
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Shahaf @ 2017-05-08 22:29 UTC (permalink / raw)
  To: shirish शिरीष; +Cc: zsh-users

shirish शिरीष wrote on Tue, May 09, 2017 at 02:28:15 +0530:
> ─[$] cat pkg-search.sh
>      1	for file in /usr/share/doc/*/changelog.Debian.gz; do
>      2	    package=${file:15}

> Trying to run the script under zsh I get the following -
> 
> [$] ./pkg-search.sh
> ./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution

That runs the script under sh.  To run it under zsh, add

    #!/usr/bin/env zsh

as the first line of the script.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-05-08 22:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-08 20:58 ./pkg-search.sh: 2: ./pkg-search.sh: Bad substitution in a shell script - shirish शिरीष
2017-05-08 22:29 ` Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).