Re: create variables in a loop?

Liste des GroupesRevenir à cu shell 
Sujet : Re: create variables in a loop?
De : lew.pitcher (at) *nospam* digitalfreehold.ca (Lew Pitcher)
Groupes : comp.unix.shell
Date : 29. May 2024, 14:10:32
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v375vo$14a46$1@dont-email.me>
References : 1
User-Agent : Pan/0.139 (Sexual Chocolate; GIT bf56508 git://git.gnome.org/pan2)
On Wed, 29 May 2024 12:57:06 +0200, Dr Eberhard W Lisse wrote:

Hi,
 
I would like to do something like
 
for i in USD GBP
do
$i=somevalue
done
 
does not work, of course.
 
Any idea on how to create (and fill variables through a loop)?

  echo $CAD $EUR
  for i in CAD EUR
  do
    eval "$i=someval"
  done
  echo $CAD $EUR

The /eval/ operation is one of those "special built-in utilities
that POSIX mandates all POSIX shells must support

 
greetings, el





--
Lew Pitcher
"In Skills We Trust"

Date Sujet#  Auteur
29 May 24 * create variables in a loop?12Dr Eberhard W Lisse
29 May 24 +- Re: create variables in a loop?1David W. Hodgins
29 May 24 +* Re: create variables in a loop?2Kenny McCormack
29 May 24 i`- How to use "eval" (was: create variables in a loop?)1Helmut Waitzmann
29 May 24 +- Re: create variables in a loop?1Lew Pitcher
29 May 24 +- Re: create variables in a loop?1Helmut Waitzmann
29 May 24 +- Re: create variables in a loop?1Chris Elvidge
29 May 24 +* Re: create variables in a loop?3Janis Papanagnou
29 May 24 i`* Re: create variables in a loop?2Eberhard W Lisse
29 May 24 i `- Re: create variables in a loop?1Kenny McCormack
30 May 24 +- Re: create variables in a loop?1Lawrence D'Oliveiro
30 May 24 `- Re: create variables in a loop?1Lawrence D'Oliveiro

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal