Modifying a variable value


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Modifying a variable value
# 1  
Old 05-14-2008
Modifying a variable value

Hi all, how do i modify a variable's value.

var1='abcd efgh ijkl mnop abcd'

how do i get var2 from var1

var2=$(......)
$echo var2
abcd efgh ijkl mnop

i.e. i have removed a duplicate occurence.

or in general how to modify a varible.

thanks in advance
# 2  
Old 05-14-2008
It's not at all clear what concept you are looking for. Perhaps you could elaborate on that a bit. In the meantime, here are some hopefully useful exercises.

Code:
var2=$var1   #copy var1 to var2
var2=${var2%abcd}  # trim abcd from end, if present
var2=`echo "$var2" | tr ' ' '\012' | sort | uniq | tr '\012' ' '` # remove duplicate tokens

The token duplicate removal is probably quite different from what you are imagining it would be, and has the unfortunate side effect of sorting the remaining tokens. In this case it doesn't matter, because they were already sorted, but nevertheless it's not a good general-purpose solution if the order of tokens is significant.

Perhaps you should read a tutorial on shell programming at this point; there's a lot of things you can do with variable substitution (${var%trim} is but a single example).
# 3  
Old 05-14-2008
hi era

I am used to programming in Matlab and C++ and in these languages you can refer to individual members of a variable (array) and compare their values to all the other members using 2 loops. how can i accomplish that in unix. For example

var2=$(users)

will return the current users but if a user is running two instances of a shell then that username will be returned twice. How can i trim the varible $var2 so that multiple occurrences of usernames are eliminated. i can use a for loop to loop through each member of the varible but then how do i compare it to the rest of the usernames in $var2.

I am referring to tutorials as well but most of them jus explain the general syntax of commands. i guess i am not referring to the right ones, will work on tht.
# 4  
Old 05-14-2008
In fact my sort | uniq example was not so far off the mark then.

A variable in Bourne classic is just a piece of text; some shells such as bash and ksh have array variables, too. The common trick would be to modify the text so it is in a suitable form by the time you assign it to a variable.

Code:
var2=$(users | sort | uniq)

# 5  
Old 05-14-2008
Code:
var2=$(users | awk '{for(i=1; i<=NF; ++i) if(!a[$i]++) printf("%s ", $i)}')

# 6  
Old 05-22-2008
Quote:
var2=$(users | awk '{for(i=1; i<=NF; ++i) if(!a[$i]++) printf("%s ", $i)}')
Hi, Thank you, this works, is it possible to it without using sed or awk.
# 7  
Old 05-23-2008
Code:
set -- `users`
var2=" "
for f; do
  case $var2 in *" "$f" "*) ;; *) var2=" $f$var2";; esac
done

This should work as long as the output you want to process is whitespace-separated. You can play around with IFS= to use a different separator, but in the general case, it gets rather ugly and cumbersome.

For convenience, I made it so that $var2 will have one leading and one trailing space. Removing or ignoring those is left as an exercise.

The shell is not very good at these things; that's why awk and sed are more or less essential for nearly any moderately complex shell script. (Or use Perl if that helps at all.)

Modern shells have additional facilities, including an array variable type, but this approach works even with Bourne Classic. We are stuck with it, and in fact, we kind of like it, in spite of its oddities and quirks.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with modifying a filename

Hello, I have a filename that looks like this: ABC_96_20141031_041133.232468 I need to shorten only the "_2014" part of the filename to simply "_14" so the filename looks like: ABC_96_141031_041133.232468 I have to do a search for this string because there are hundreds of files and... (17 Replies)
Discussion started by: bbbngowc
17 Replies

2. Shell Programming and Scripting

Need some help modifying script

I have a script that currently runs fine and I need to add or || (or) condition to the if statement and I'm not sure the exact syntax as it relates to the use of brackets. my current script starts like this: errLog="/usr/local/website-logs/error.log" apacheRestart="service httpd restart"... (3 Replies)
Discussion started by: jjj0923
3 Replies

3. Solaris

Setting/Modifying variable specific to target in Makefile

Hi, I have a small piece of Makefile script which throw's error on Sun Sparc machine, but works fine with Sun Optron, Linux, AIX machines. FOO=Naveen test1:FOO=Dhilip test1: @echo FOO is ${FOO} test2: @echo Me is ${FOO} Output on Sun Sparc - ukhml-v890new-~/test: make test1... (5 Replies)
Discussion started by: nsriram
5 Replies

4. Shell Programming and Scripting

Help with modifying files

Hello everyone, I have some data files, with mixed header formats. the sample for the same is: >ABCD76567.x1 AGTCGATCGTAGTCGTAGCTGT >ABCD76567.y1 AGTCGATCGTAGTCGTAGCTGT >ABCD76568.x1 pair_info:898989 AGTCGATCGTAGTCGTAGCTGT >ABCD76568.y1 pair_info:893489 AGTCGATCGTAGTCGTAGCTGT... (2 Replies)
Discussion started by: ad23
2 Replies

5. UNIX for Dummies Questions & Answers

Modifying rows

Hi, I have a file that looks something like this (2 columns 4 rows): eeeeeeeeeeeeeeeeeeeeeeeeeeeee -45 rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr -24 ttttttttttttttttttttttttttttttttttttttttttt -29 uuuuuuuuuuuuuuuuuuuuuuuuuuu -23 How do I get it to look like this: -45... (3 Replies)
Discussion started by: phil_heath
3 Replies

6. Shell Programming and Scripting

.bashrc files modifying the PS1 variable?

Is there a command for finding all files on the system named ".bashrc" that modify the PS1 variable? I'd like to list the full file name(s) and the protection (including the full path). (5 Replies)
Discussion started by: raidkridley
5 Replies

7. Shell Programming and Scripting

Modifying file from outside

hi , I have a javascript file like this: function fnValidateId(){ var array_id = new Array("444","7888","6633","555","146562","3333","33332") var tmp_id = document.form1.id.value; var num=0; while(1) { if(tmp_id ==... (9 Replies)
Discussion started by: Sreejith_VK
9 Replies

8. Shell Programming and Scripting

modifying my shell

Hello, I have installed a new program called chimera under the directory /usr/local/bin/chimera. the executable is under the directory /usr/local/bin/chimera/bin/chimera.e If i put myself under the latest directiry and I type ./chimera, the program works. I would like to avoid this and I... (1 Reply)
Discussion started by: nico-hellas
1 Replies

9. IP Networking

Modifying Route

hello, I have to communicate with a distant station . But Both belong to the same area. So I do not need a gate . But when I make a traceroute, it indicates that I pass through out a gate. What can I do to establish a direct connexion between the both. (with NT ) (1 Reply)
Discussion started by: hoang
1 Replies

10. UNIX for Dummies Questions & Answers

Modifying $PATH variable in /etc/profile

In my /etc/profile, my $PATH variable is set as follows: $PATH =/sbin:/usr/sbin:/usr/bin:/etc Then how do I add an additional directory to it? say /export/home/abd/rose Please advise. Thanks! Deepali (3 Replies)
Discussion started by: Deepali
3 Replies
Login or Register to Ask a Question