[QUESTION] echoing a variable


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting [QUESTION] echoing a variable
# 1  
Old 11-15-2012
[SOLVED] echoing a variable

Hi...I am trying to make a script like this:

Code:
mmc=123
echo "$mmc" > 123.txt

The variable "mmc" has to be declared right on the beginning of the script, so when I open 123.txt, I get:
Code:
123

My question is, how can I "echo" '$mmc' into 123.txt, retaining the '$mmc' phrase? Which means when I open 123.txt, I will get:
Code:
$mmc

Thanks in advance...Smilie

Last edited by Ryuinferno; 11-18-2012 at 11:53 PM..
# 2  
Old 11-15-2012
Ah, use single quotes. '$mmc' and it will not substitute.

I don't know why you'd want that, as $mmc in a text file isn't really useful. It will be very difficult to turn it back into a variable later.
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 11-15-2012
Is this what you are trying to achieve:-
Code:
echo "\$mmc"

This User Gave Thanks to Yoda For This Post:
# 4  
Old 11-15-2012
Quote:
Originally Posted by Corona688
Ah, use single quotes. '$mmc' and it will not substitute.

I don't know why you'd want that, as $mmc in a text file isn't really useful. It will be very difficult to turn it back into a variable later.
Cause I am actually trying to tell the script to create another script...Smilie
# 5  
Old 11-15-2012
Quote:
Originally Posted by Ryuinferno
Cause I am actually trying to tell the script to create another script...Smilie
I was afraid of that. If you think you need to generate a script to do something shell can't do, you're probably missing a few important things. Last time, it was a fellow who wanted to generate script0001.sh-script9999.sh to work on file0001 through file9999, because he didn't know how to use loops and commandline parameters...

Why not make a script that just does what you want in the first place? What feature are you missing which would allow you to do so?
# 6  
Old 11-15-2012
Quote:
Originally Posted by Corona688
I was afraid of that. If you think you need to generate a script to do something shell can't do, you're probably missing a few important things. Last time, it was a fellow who wanted to generate script0001.sh-script9999.sh to work on file0001 through file9999, because he didn't know how to use loops and commandline parameters...

Why not make a script that just does what you want in the first place? What feature are you missing which would allow you to do so?
Actually I am trying to write a shell script for android phones...so the script was supposed to generate another script in the init.d folder so that it will run on boot...the main script can only be run manually...Smilie

One thing about looping...I tried to use while loops with nested if...but I got "while" unmatched errors all the time...checked the parameters and they are correct, and if I remove the nested ifs, then it will loop...weird...
# 7  
Old 11-15-2012
You may find here-documents useful:

Code:
cat >filenane <<"EOF"
some text
more text
and stuff
EOF

Note the ending EOF must be at the beginning of the line, not indented.

Without seeing your code, I cannot guess what you did wrong with your nested loops.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Getopts not echoing correctly

Hi, When I run the the following code: #!/bin/bash if ]; then usage fi if ] then echo "Do not execute this as root, use -s instead" fi SERVERFILE="servers" function usage { echo "USAGE: ${0} COMMAND" (4 Replies)
Discussion started by: mohca2020
4 Replies

2. Shell Programming and Scripting

Echoing only once for each subdir

I have a script that runs from this: for i in * ; do (cd $i && echo $i && /test1/execute/testb);done this is testb: for file in `ls *.txt` do if && && && && && ; then echo "NO"; break 1; else echo "it is there" fi done What is happening is that I can get it to run a... (19 Replies)
Discussion started by: newbie2010
19 Replies

3. Shell Programming and Scripting

Echoing silently?

I know, sounds mutually exclusive :-) I have a script where I ask for a password and store it in a variable, and then use it with sudo on an array of other hosts. The password winds up being choed back to my terminal as well as to the process on the remote host, like: Attempting to update... (2 Replies)
Discussion started by: jnojr
2 Replies

4. Shell Programming and Scripting

Echoing command results

Sorry folks, Second time today. I am working on a script that accepts data via pipe and processes it. I expect it to work as: # command | ProcScript.sh Within ProcScript.sh, I want to be able to give the target of the prev run command I am using history 2 | grep -v history | awk... (18 Replies)
Discussion started by: Marc G
18 Replies

5. Shell Programming and Scripting

Variable to command to Variable Question KSH

Hello, First post for Newbie as I am stumped. I need to get certain elements for a specific PID from the ps command. I am attempting to pass the value for the PID I want to retrieve the information for as a variable. When the following is run without using a variable, setting a specific PID,... (3 Replies)
Discussion started by: Coyote270WSM
3 Replies

6. Shell Programming and Scripting

echoing date command into file

I want to echo into file1 echo & date commands, which in turn will be echoed into file2 string and the current date. So when I'll run file1 it will echo into file2 the commands 'echo' & 'date' My problem is that the date command turns into the actual date value. Example:... (2 Replies)
Discussion started by: liav
2 Replies

7. Shell Programming and Scripting

Echoing weird variables.

kindly find below:- var="'(]\\{}\$\"" echo $var # it wil give this '(]\{}$" echo "$var" # '(]\{}$" Doesn't make a difference why???. if we set IFS to '\' also the below happens IFS='\' echo $var # '(] {}$" \ converted to space. Why? weird!! echo "$var"... (3 Replies)
Discussion started by: ahmad.diab
3 Replies

8. Shell Programming and Scripting

Echoing

I was just wondering how you would echo out different length variables but still have them all line up. I tried putting tabs between the variables but that didn't work as planned. For example this is in some loop, with different variables in it each time: echo "$1 $2 $3 $4 $5" Appears like... (3 Replies)
Discussion started by: Okema
3 Replies

9. UNIX for Dummies Questions & Answers

echo not echoing correctly

Here is the file named tuwork.......... 209 200 WZ 6529 SKTNCA01X4X C POI LODI LODI 738 SKTNCA0127T LOD Here is the scipt....... cat tuwork | while read rva do num=`echo $rva | cut -d" " -f1-2` reg=`echo $rva | cut -c10` ocn=`echo $rva | cut -c12-15` x=`echo $rva | cut -c29`... (3 Replies)
Discussion started by: shorty
3 Replies

10. Shell Programming and Scripting

echoing two variables in one statement

I have the following -------------------- foreach var (STO SNY WKF) set ta = 5 end --------- How can I echo both variables at the same time. Something to the effect of echo ${$var}ta But this doesn't work. Seems like it would. Thanks. (4 Replies)
Discussion started by: wxornot
4 Replies
Login or Register to Ask a Question