Sponsored Content
Operating Systems Solaris Reason why some commands need escaped-characters and other not Post 302463683 by doublefrangelic on Monday 18th of October 2010 08:20:28 AM
Old 10-18-2010
Quote:
Originally Posted by jlliagre
There is neither a comma nor an equal sign appearing in the first command line so obviously no need to escape them within it.

The commas and equals signs appear in the file names and folders, and these appear within the listoffiles.txt input file

apologies, I only noticed now that the comment
# (this command does need to have the equals and commas escaped
preceded the wrong line. It is meant to be before the rm command.

---------- Post updated at 01:49 PM ---------- Previous update was at 01:46 PM ----------

I have edited the script in my post, and it now appears as it should be.

The question remains

Thank you

---------- Post updated at 02:20 PM ---------- Previous update was at 01:49 PM ----------

OK, my apologies, I have not solved the problem but my question is irrelevant.

I discovered that the problem I am experiencing occurs whether or not the file names are escaped.

The filenames are corrupted in the results of the rm command-line and many were corrupted close to the equals signs and commas
The issue occurs intermittently so I assumed it had something to do with escaping the characters.
Now to figure out why.. thanks Anyway for the assistance
 

10 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

angle brackets should be escaped automatically

I think that HTML code within posts should be turned off -- the vB Code can provide all the features we need. Then, you should modify the program to automatically escape any angle brackets, so that < gets translated to < and > gets translated to > I see a lot of people garble their posts... (4 Replies)
Discussion started by: PxT
4 Replies

2. Shell Programming and Scripting

Echo escaped \c in SH Shell Any Idea

Hi All, I have got an echo statement with "\c" in it to avoid getting into a newline. Ths script is using #!\bin\sh Any idea what could make it to escape "\c" (4 Replies)
Discussion started by: asami
4 Replies

3. Shell Programming and Scripting

problems with sed and bash. Escaped characters ?

Hi, I'm writing a long script for bash (on RHEL 5.0) to execute many commands. So, my idea is to create a function to deal with error checking and logging (see ceckoutput() below). This works with all commands except for sed. I think it may be a problems with escaped characters. So I did the... (4 Replies)
Discussion started by: macL
4 Replies

4. Shell Programming and Scripting

Editing long records with characters that need to be escaped.

Hi all, I'm new in unix scripting and I've a problem with a script... :confused: I need to read a file, add some fields in the records, and write them in another file, but even when I simply read and write the records, the shell interprets some caracters and the result is that the records... (5 Replies)
Discussion started by: Macs_Linux
5 Replies

5. Shell Programming and Scripting

hidden characters added to commands

Hello everybody. Im really new in shell scripting. Im working with RedHat 4. I have begin to do some scripts to test the posibilitys but Im fancing a disturbing problem. some times the lines that I write add the return character or end-of-file ascii character to the command or argument tha... (2 Replies)
Discussion started by: josebenitez
2 Replies

6. UNIX for Dummies Questions & Answers

Display file with escaped color codes

Hi, I have a file containing color codes: Fri May 25 17:13:04 2012: Starting MTA: exim4^ Loading cpufreq kernel modules...^How can I display it colorized on a linux terminal? (4 Replies)
Discussion started by: ripat
4 Replies

7. Shell Programming and Scripting

Regex:search/replace but not for escaped character

Hi Input: - -- --- ---- aa-bb-cc aa--bb--cc aa---bb---cc aa----bb----cc Output: . - -. -- aa.bb.cc (7 Replies)
Discussion started by: chitech
7 Replies

8. Shell Programming and Scripting

Parsing special characters from variable commands

Hi, I am fairly new to unix scripting and recently tasked with some reporting scripts. The reporting checks several batch jobs and this is quite iterative. Now I am trying to minimize script effort and maximize reusability as there are only slight nuances in the repetitive tasks. For... (3 Replies)
Discussion started by: joeniks
3 Replies

9. UNIX for Dummies Questions & Answers

Using read with escaped variables

Not sure if this is possible, but I'm trying to read in a variable that needs to have its escape backslashes intact. So the person who enters the actual value does not have to type any \ characters. Example: read list X1000\ filecab.txt echo "$list" In this case the \ needs to be... (3 Replies)
Discussion started by: newbie2010
3 Replies

10. Shell Programming and Scripting

[BASH] Getting a semi-tailing backslash when passing (escaped) variables to script

Heyas Figured me had a 'typo' in tui-conf-set, i went to fix it. Now, i also figured, it might be nice to have tui-conf-set report (to console, not only exit code) wether it could save the variable to the file or not. This said, I appended this code: (the tui-title and tui-echo lines are... (3 Replies)
Discussion started by: sea
3 Replies
ADDCSLASHES(3)								 1							    ADDCSLASHES(3)

addcslashes - Quote string with slashes in a C style

SYNOPSIS
string addcslashes (string $str, string $charlist) DESCRIPTION
Returns a string with backslashes before characters that are listed in $charlist parameter. PARAMETERS
o $str - The string to be escaped. o $charlist - A list of characters to be escaped. If $charlist contains characters , etc., they are converted in C-like style, while other non-alphanumeric characters with ASCII codes lower than 32 and higher than 126 converted to octal representation. When you define a sequence of characters in the charlist argument make sure that you know what characters come between the characters that you set as the start and end of the range. <?php echo addcslashes('foo[ ]', 'A..z'); // output: foo[ ] // All upper and lower-case letters will be escaped // ... but so will the []^_` ?> <?php echo addcslashes("zoo['.']", 'z..A'); // output: zoo['.'] ?> RETURN VALUES
Returns the escaped string. CHANGELOG
+--------+---------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------+ | 5.2.5 | | | | | | | The escape sequences v and f were added. | | | | +--------+---------------------------------------------+ EXAMPLES
$charlist like "..37", which would escape all characters with ASCII code between 0 and 31. Example #1 addcslashes(3) example <?php $escaped = addcslashes($not_escaped, "..37!@177..377"); ?> SEE ALSO
stripcslashes(3), stripslashes(3), addslashes(3), htmlspecialchars(3), quotemeta(3). PHP Documentation Group ADDCSLASHES(3)
All times are GMT -4. The time now is 10:39 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy