zsh-users
 help / color / mirror / code / Atom feed
* Creating a directory with a date-based name
@ 2003-12-17 10:45 zzapper
  2003-12-17 10:56 ` Peter Stephenson
  2003-12-17 10:58 ` Dominik Vogt
  0 siblings, 2 replies; 4+ messages in thread
From: zzapper @ 2003-12-17 10:45 UTC (permalink / raw)
  To: zsh-users


Hi Ya,

I'm a zsh newbie.

I have the following bash script, which will create a directory say
06Dec03 if this directoryy exists then create 06Dec03v2

I need to enhance it to create 06Dec03v3,4,5,6 etc. should these
directories exist.

How would this best be done in zsh?

dirbackup="c:/backup/mysqlnext/"
cd $dirbackup
eval dat=$(date.exe '+%d%b%y')

if ! mkdir $dat
then
   dat=$dat"v2"
   if mkdir $dat
   then
   echo "created $dat"
   fi
fi
cd $dat
zzapper (vim & zsh)
--

vim -c ":%s/^/WhfgTNabgureRIvzSUnpxre/|:%s/[R-T]/ /Ig|:normal ggVGg?"

http://www.vim.org/tips/tip.php?tip_id=305  Best of Vim Tips


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

* Re: Creating a directory with a date-based name
  2003-12-17 10:45 Creating a directory with a date-based name zzapper
@ 2003-12-17 10:56 ` Peter Stephenson
  2003-12-17 10:58 ` Dominik Vogt
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Stephenson @ 2003-12-17 10:56 UTC (permalink / raw)
  To: zsh-users

zzapper wrote:
> 
> Hi Ya,
> 
> I'm a zsh newbie.
> 
> I have the following bash script, which will create a directory say
> 06Dec03 if this directoryy exists then create 06Dec03v2
> 
> I need to enhance it to create 06Dec03v3,4,5,6 etc. should these
> directories exist.
> 
> How would this best be done in zsh?


integer vers=2

while [[ -d ${dat}v$vers ]]; do
   (( ++vers ))
done
mkdir ${dat}v$vers


(actually the same in bash, as far as I can see.)

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 692070


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************


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

* Re: Creating a directory with a date-based name
  2003-12-17 10:45 Creating a directory with a date-based name zzapper
  2003-12-17 10:56 ` Peter Stephenson
@ 2003-12-17 10:58 ` Dominik Vogt
  2003-12-17 11:47   ` zzapper
  1 sibling, 1 reply; 4+ messages in thread
From: Dominik Vogt @ 2003-12-17 10:58 UTC (permalink / raw)
  To: zsh-users

On Wed, Dec 17, 2003 at 10:45:09AM +0000, zzapper wrote:
> 
> Hi Ya,
> 
> I'm a zsh newbie.
> 
> I have the following bash script, which will create a directory say
> 06Dec03 if this directoryy exists then create 06Dec03v2
> 
> I need to enhance it to create 06Dec03v3,4,5,6 etc. should these
> directories exist.
> 
> How would this best be done in zsh?
> 
> dirbackup="c:/backup/mysqlnext/"
> cd $dirbackup
> eval dat=$(date.exe '+%d%b%y')
> 
> if ! mkdir $dat
> then
>    dat=$dat"v2"
>    if mkdir $dat
>    then
>    echo "created $dat"
>    fi
> fi
> cd $dat

Like this (untested):

  dirbackup="c:/backup/mysqlnext/"
  cd "$dirbackup"
  eval dat=$(date.exe '+%d%b%y')

  if ! mkdir "$dat"; then
     i=1
     finished=""
     while [ -z "$finished" ] && [ "$i" != 9999 ]; do
       i=$[i+1]
       dat="${dat}v$i"
       if mkdir "$dat"; then
           echo "created $dat"
       fi
     done
  fi
  cd $dat

Ciao

Dominik ^_^  ^_^


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

* Re: Creating a directory with a date-based name
  2003-12-17 10:58 ` Dominik Vogt
@ 2003-12-17 11:47   ` zzapper
  0 siblings, 0 replies; 4+ messages in thread
From: zzapper @ 2003-12-17 11:47 UTC (permalink / raw)
  To: zsh-users

On Wed, 17 Dec 2003 11:58:05 +0100, Dominik Vogt <dominik.vogt@gmx.de>
wrote:

Hi,
My final script (thanx)

dirbackup="c:/backup/mysqlnext/"
cd "$dirbackup"
eval origdat=$(date.exe '+%d%b%y')

if ! mkdir "$dat"; then
     i=1
     finished=""
     while [ -z "$finished" ] && [ "$i" <= 9 ]; do
       i=$[i+1]
       dat="${origdat}v$i"
       if mkdir "$dat"; then
           finished="end"
           echo "created $dat"
       fi
     done
fi
cd $dat

zzapper (vim & zsh)
--

vim -c ":%s/^/WhfgTNabgureRIvzSUnpxre/|:%s/[R-T]/ /Ig|:normal ggVGg?"

http://www.vim.org/tips/tip.php?tip_id=305  Best of Vim Tips


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

end of thread, other threads:[~2003-12-17 11:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-17 10:45 Creating a directory with a date-based name zzapper
2003-12-17 10:56 ` Peter Stephenson
2003-12-17 10:58 ` Dominik Vogt
2003-12-17 11:47   ` zzapper

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).