Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

change variables in for loop

Original Message
Name: Niall21
Date: March 13, 2006 at 13:44:13 Pacific
Subject: change variables in for loop
OS: unix Bourne shell
CPU/Ram: ?
Model/Manufacturer: ?
Comment:
I have the permissions of a file saved in a string and broken up into 9 different variables each being one of r, w, x, -. I'm trying to find a short way of changing them to read YES or NO without using 9 if statement which I have already done. What I have is

for i in "$ur" "$uw" "$ue" "$gr" "$gw" "$ge" "$er" "$ew" "$ee"
do
if [ $i != - ]
then
$i="YES"
else
$i="NO"
fi
done

I've tried to set and unset but haven't got that to work either.

Anybody have any ideas?


Report Offensive Message For Removal


Response Number 1
Name: nails
Date: March 13, 2006 at 15:10:40 Pacific
Subject: change variables in for loop
Reply: (edit)
Here's my take:

#!/bin/ksh

ur=-
uw=r
ue=r
gr=-
gw=r
ge=r
er=r
ew=r
ee=-

for i in ur uw ue gr gw ge er ew ee
do
var=$(eval echo \$$i)

if [ $var != "-" ]
then
eval "$i=\"YES\""
else
eval "$i=\"NO\""
fi

done


Report Offensive Follow Up For Removal

Response Number 2
Name: Niall21
Date: March 13, 2006 at 15:35:44 Pacific
Subject: change variables in for loop
Reply: (edit)
Works perfectly! Cheers buddy!

Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: change variables in for loop

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




My PC has been hijacked!

Lexmark 2600 Printer Issues

btk1w1 infected start here post

Unwanted message remians on screen

Slow boot time


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC