![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with a question i have attempted to figure out | Vn3050 | UNIX for Dummies Questions & Answers | 0 | 03-05-2007 07:57 PM |
| Can't figure out else not matching | peteroc | Shell Programming and Scripting | 4 | 09-19-2006 04:58 PM |
| figure it out | cool_dude | UNIX for Dummies Questions & Answers | 1 | 09-11-2006 12:49 PM |
| i can not figure this out | steph | UNIX for Dummies Questions & Answers | 1 | 08-21-2002 08:32 AM |
| how to figure out the size in MB for an informix database | Optimus_P | UNIX for Advanced & Expert Users | 5 | 09-07-2001 09:32 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Cant figure out this..
Hi, I need a little help here. I am exporting user info from a PSQL database and everything is working with the exception of this:
10029008:dsAuthMethodStandard\:dsAuthClearText:classword:10029008:2004:10029008:10029008:/home/student/1002/90/08:10029008 It is putting a colon right before the last numbers. I need to have a / to complete the home path. Any suggestions are welcome and I appreciate this forums help. Thanks, JW |
|
||||
|
Here is an attempt....
Code:
#!/bin/sh
first()
{
echo $1
}
second()
{
echo $2
}
handle_b()
{
IFS=":"
export IFS
echo $@ | while read X Y
do
echo $X $Y
done
}
IFS=":"
export IFS
while read A B C D E F G H I J K L M N O P Q
do
(
IFS=" "
B1=`handle_b $B`
B2=`first $B1`
B3=`second $B1`
echo $A\:$B2\\:$B3\:$C\:$D\:$E\:$F\:$G\:$H/$I
)
done
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|