Sponsored Content
Full Discussion: eval removes backslash
Top Forums UNIX for Dummies Questions & Answers eval removes backslash Post 302431416 by daudiam on Monday 21st of June 2010 11:45:48 PM
Old 06-22-2010
Thanks a gigaton ! It really was of great help. I will just mention what I have understood.

A backslash removes any special meaning of the symbol succeeding it. If there is no special symbol (like $,\,`,etc.) succeeding it, the backslash is removed.
Code:
 # echo \t
# t

In the following, the special meaning of the succeeding character is removed.
Code:
# set he is a boy
# echo $1
(Here special meaning of $ is retained)
# echo \$1
# $1 (here the special meaning is removed)

Similarly, in
Code:
echo \\\t

the first \ tells that the next slash is to be taken literally (and is itself not printed), so one slash (the second one) is printed. The third slash has no special character after it, so its not printed. The output is :
Code:
# \t

Similarly
Code:
# echo \\\\t
# \\t

. The first and 3rd \ tell that the next \ has to be taken literally, and hence the 2nd and 4th are printed.

As for a backslash within quotes, it has special meaning only when followed by \,$,',",newline. Otherwise, its a simple character.
Code:
# echo "\jao"
# \jao

Here, since \ is not followed by the above mentioned characters, it is treated as a simple character.
Code:
# echo "\\jao"
# \jao

Here, \ is followed by \ (a character in the above list) and so is treated specially (i.e. it makes the following character an ordinary one and is itself removed)

Now, for eval. Eval parses the argument once without executing the command, and then again, this time executing it too.
Code:
# eval echo \\g
# g

On the first parse, the first backslash makes the second \ be treated as an ordinary character, and is itself removed. So, after the first parse, the argument is \g. A similar thing happens in the second parse, and the output is therefore, g.
Code:
# eval echo \\\\g
# \g

Now, in the first parse, what happens is similar to the example I gave a few lines above (the same thing as u type it without eval), and so after the first parse u have : \\g as the argument. Now, in the second pass, the first / makes the next slash appear as an ordinary character, and is itself rmeoved, so we have a single slash followed by g as the answer.

I hope I have understood correctly.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script removes itself

I have a script that reads from a file and deletes all files in tha path specified in the file.The problem,however, is the script also deletes itself from the home directory where I run it :-( #!/bin/ksh while read DAYS PURGE_PATH do cd $PURGE_PATH find . \( -type d ! -name . -prune \)... (5 Replies)
Discussion started by: kayarsenal
5 Replies

2. UNIX for Advanced & Expert Users

GAWK removes FS | on output

I have the simple gawk script below. When the script runs in the output of all the ITM lines the FS is replaced with a space, the Non ITM lines retain the | field separator. The ITM lines have many fields and I can't insert "|" between each field because some of the fields are blank. Is... (1 Reply)
Discussion started by: paulr211
1 Replies

3. Shell Programming and Scripting

Strange result of eval, how does eval really work with ssh?

Hi all, some small script with eval turned me to crazy. my OS is linux Linux s10-1310 2.6.16.53-0.8.PTF.434477.3.TDC.0-smp #1 SMP Fri Aug 31 06:07:27 PDT 2007 x86_64 x86_64 x86_64 GNU/Linux below script works well #!/bin/bash eval ssh remotehost date eval ssh remotehost ls below... (1 Reply)
Discussion started by: summer_cherry
1 Replies

4. Ubuntu

Aptitude removes all packages

Hi Team, Please find below error. I got this after i done something in aptitude. Actually i was trying to update all packages, but unfortunately I removed all packages. Now my server is down. When i boot it gives me me errors of missing .so files. Is there any way to repair my server... (2 Replies)
Discussion started by: paragnehete
2 Replies

5. UNIX for Advanced & Expert Users

perl/sed -i removes link

hello, is it a behavior of or that "-i" removes unix link . example : i create a file "src_file" and link it to "link_file" and then i start "perl -i" the link is removed. does another option exists to change content of a file without temporary files ? UNIX-Version: HP-UX and... (2 Replies)
Discussion started by: bora99
2 Replies

6. Shell Programming and Scripting

Error in eval eval command to print html tags

anyone has any info on why this is complaining??? vivek@vivek-c5e55ef2e ~/TAC $ zoneCounter=1 vivek@vivek-c5e55ef2e ~/TAC $ optUsage1=23% vivek@vivek-c5e55ef2e ~/TAC $ eval eval echo "<th>Zone $zoneCounter </th><th align=\"left\"> \$optUsage$zoneCounter </th>" -bash: syntax error... (1 Reply)
Discussion started by: vivek d r
1 Replies

7. Shell Programming and Scripting

Error in eval eval command to print html tags

anyone has any info on why this is complaining??? vivek@vivek-c5e55ef2e ~/TAC $ zoneCounter=1 vivek@vivek-c5e55ef2e ~/TAC $ optUsage1=23% vivek@vivek-c5e55ef2e ~/TAC $ eval eval echo "<th>Zone $zoneCounter </th><th align=\"left\"> \$optUsage$zoneCounter </th>" -bash: syntax error... (13 Replies)
Discussion started by: vivek d r
13 Replies

8. Shell Programming and Scripting

Sed: removes \ from text which causes issues

Hi all, Hoping someone hoping someone might be able to help. i've got the following sed command which i'm using in a bash script that i'm trying to use to insert a new line into an already existing file so i don't have to manually enter it when setting stuff up. the existing script test2/3 are... (3 Replies)
Discussion started by: springs2
3 Replies

9. UNIX for Dummies Questions & Answers

Why awk removes delimiters?

Code : echo "1,2,3,4"|awk -F "," 'NR==n{$3=a}1' n=1 a=45 Output : 1 2 45 4 Expected : 1,2,45,4 (4 Replies)
Discussion started by: Rajesh_us
4 Replies

10. Shell Programming and Scripting

awk removes delimiter unexpectedly

datafile: blah,blah,blah,blah,blah,blah,blah,blah,blah=0_nblah=0-- ,blah,blah,blah im using the following command to turn the "_n" and "-- " to just a space " " only in the $9th field. meaning, it has to make the changes only in the 9th column/field of the datafile. awk -F, '{... (1 Reply)
Discussion started by: SkySmart
1 Replies
All times are GMT -4. The time now is 07:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy