The quoting tag has no wiki summary.
0
votes
2answers
48 views
Issue with quoting of IS, NULL, NOT, !, and other reserved strings in ON conditions of JOIN clauses in Zend Framework 2
I have an SQL statement, that selets sport classes/courses (courses) with their trainers (trainers) over an association table (courses_trainers). Since some courses have multiple trainers, I use the ...
2
votes
1answer
58 views
Bash doesn't parse quotes when converting a string to arguments
This is my problem. In bash 3:
$ test='One "This is two" Three'
$ set -- $test
$ echo $2
"This
How to get bash to understand the quotes and return $2 as This is two and not "This? Unfortunately I ...
2
votes
2answers
81 views
Python -c switch
I currently have
".".join(str(z) for z in [int(x, 16) for x in (re.sub(r'(.{2})(?!$)', r'\1.', "00112233")).split('.')])
'xx.xx.xx.xx'
which works but when i try to use it via the pyton -c switch ...
0
votes
1answer
49 views
bash variable string with quotes and double quotes
I need to store a string in a variable on bash.
Here the string...
7;310000000007;1390;30000001390;119;130000000119;;;;;939738;30;ST;DESCRIPTION TEXT TEXT " TEXT ' TEXT text;20130318; 1.40;; ...
1
vote
2answers
56 views
What is the proper quoting to assign an interpolated sqlite3 query to a variable in Bash?
I am trying to assign the output of the following to a variable
sqlite3 /home/user/db_fake_book_index "select id, page from fb2 where bookcode='$bookcode' and page=$page
If I run quote it like
...
0
votes
1answer
68 views
Quoting a string for csh
For the purposes of this question, by "csh", I mean tcsh.
I am aware of the standard advice to avoid csh for programming. However, sometimes ones needs to interact with existing csh code, and then it ...
3
votes
1answer
40 views
quote string for TeX input
I am writing a Python script that takes plain text as input and produces
LaTeX code as output. At some point the script has to quote all the
characters that have a special meaning in TeX, such as %, ...
0
votes
3answers
127 views
Bash Shell Expansion Issue with multiple \r
I am trying to batch fix some .scc files using vim and need to pass a substitution sting to it.
I'm trying to use vim -E to pass this line ":s/\r/\r/g"
I've tried embedding individual characters as ...
0
votes
0answers
58 views
bbcode quote users posts
i'm trying to code/ quote users posts, but it double quote posts
button code:
<input type="button" value="Bold" onclick="javascript:insert('[quote]<?php echo $dn['message'];?>', ...
1
vote
1answer
173 views
Error in sh eval code, “$: not found”?
I have a bash script written for our DD-WRT routers, it restarts the NAS daemons periodically to fix random problems with iPhone's connecting to wireless.
This is one of my first bash scripts, and ...
2
votes
1answer
41 views
How to quote a perl $symbol in a makefile
In a Makefile, I have a rule to make a figure list from a LaTeX paper by piping the
output from a script to a perl expression that increments figure numbers $f++ and prepends Figure $f: to the lines. ...
2
votes
1answer
46 views
psql passed variable
New to psql scripting.
I try to pass a variable to a psql script but get an error:
psql -v dateav="2012-01-28" mcdb -p 5555 -U admin -q -t -A -c 'select count (client_name) from v_activities where ...
1
vote
1answer
153 views
Grails naming id column Error
I'm having a problem in my domain class. Every time I try to insert an entry this error appears:
The column name "Sequence_No" was not found in this ResultSet.
Here is my domain class:
class ...
1
vote
1answer
61 views
read a variable line by line without gobbling the \ character
I am using this snippet to read a variable line by line:
echo "${lines}" | while read line; do something with ${line}; done
lines contains new lines and occurrences of the \ character (the line ...
3
votes
2answers
81 views
getting weird error with regex '[
I am new with Perl and learning it. I write a script which provides word auto completion by tab as bash provides. If input is not in defined array, it prints predefined message and if input is in ...
0
votes
2answers
696 views
Raising error in postgreSQL
CREATE OR REPLACE FUNCTION msgfailerror() RETURNS trigger AS
' BEGIN
IF NEW.noces< new.first_column THEN
RAISE EXCEPTION 'cannot have a negative salary';
END IF;
return new; ...
0
votes
2answers
606 views
How to cc a maillist in mailx command
I had prepared a cc maillist as below:
/appl/tracker/TEST> more abc.maillist
xyz@yahoo.com, a123@gmail.com, abc@xyz.com
And a to maillist as below:
/appl/tracker/TEST> more ...
0
votes
1answer
107 views
SQL lost in to escaping characters for INSERT statements
I am using Microsoft SQL 2005.
"Someone" gives me a list of INSERT "pre-defined statements" that I CANNOT modify outside SQL (e.g. using scripting languages like Python).
Being the "Someone" I am ...
0
votes
1answer
67 views
Fourthly nested quoting in JSP
How can I make Tomcat swallow this line?? I tried all quoting combinations!
<liferay-ui:search-container-column-text name="howstheweather"
value="<liferay-ui:message ...
0
votes
1answer
116 views
Whitespace from Java to Terminal to Applescript
I'm trying to run an applescript from my java program using the "osascript" command in mac terminal. The applescript works perfectly with apps with spaces in their names when I try it from terminal, ...
0
votes
1answer
100 views
Why can't I quote ant arguments?
I'm trying to run an ant target specifying an argument with spaces and it's just not working (only using the first word). I'm sure I've done this many times before without incident.
ant myTarget ...
4
votes
3answers
856 views
How to put double quotes in VS2010 post build step
I'm trying to create a post build file copy step in VS2010 which handles path macros when they have embedded spaces. I've tried surrounding the copy commands in double quotes but I get error from ...
1
vote
6answers
909 views
Why do I get “/bin/sh: Argument list too long” when passing quoted arguments?
How long can be a command line that can be passed to sh -c ''? (in bash and in bourne shell)
The limit is much lower than that from the OS (in case of modern Linux).
For example:
$ /bin/true $(seq ...
2
votes
3answers
440 views
rsync + ssh in python subprocess gets error with spaces in directory name
When I run my Python application (that synchronizes a remote directory locally) I have a problem if the directory that contains my app has one or more spaces in its name.
Directory name appears in ssh ...
0
votes
1answer
84 views
Is there a php script for extracting quotes?
I couldn't find anything on stackoverflow or google so I thought I'd ask.
I'm looking for a php script that can extract quotes from a given text. For instance, I have this text:
Federer fully ...
2
votes
2answers
2k views
Storing values in an array using shell scripting
This works fine since because i'm directly inputting the data.
declare -a arr
arr=( $(awk '/123456789/{print NR}' filename) )
echo ${arr[0]}
echo ${arr[*]}
Bt when i do as below, it doesn't work. ...
10
votes
1answer
184 views
clojure require syntax rationale
I'm having a hard time understanding (and therefore remembering) the clojure require syntax described here: http://clojuredocs.org/clojure_core/1.3.0/clojure.core/require. It seems both counter ...
12
votes
5answers
784 views
What is the meaning of “quasi” in quasiquotations?
Some languages like Haskell (or Nemerle) have quasiquotations.
I wonder what the “quasi” means and if there also exist “quotations” without the “quasi” part.
0
votes
1answer
145 views
Which characters to quote is shell script assignment?
I can't assign
RED5_HOME=/opt/red5-1.0.0
since variable appears to empty.
Probably some characters in variable value are to backslashed. Where to get complete list of characters which should be ...
0
votes
1answer
49 views
shell quoting behavior
I just learned that, quoting make a huge difference in some cases, and I did something to test it, here is what I just did,
$ xfs=$(find . -type f -perm -111) #find all files with x-perm
$ echo ...
1
vote
1answer
360 views
Put $$ in dollar-quoted string in PostgreSQL
I have a function in Postgres:
CREATE OR REPLACE FUNCTION upsert(sql_insert text, sql_update text)
RETURNS integer AS
$BODY$
BEGIN
EXECUTE sql_insert;
RETURN 1;
EXCEPTION WHEN unique_violation ...
1
vote
3answers
228 views
Using find(1) in command substitution and quote filenames with blanks
I'd like to use find inside a command substitution, where the returned filenames contain whitespace. What option do I need so it correctly quotes the filenames? I tried -print0, but it will not work ...
4
votes
2answers
158 views
Why can't you unquote-splice in normal (unquoted) code?
In Clojure you can unquote-splice a list of values to generate code, e.g.
(def extra-values [1 2 3 4])
`(+ 100 200 ~@extra-values)
=> (clojure.core/+ 100 200 1 2 3 4)
It seems logical that the ...
0
votes
2answers
77 views
Ajax request quoting
I am trying to send an Ajax request using the prototype framework that adds a new row to my table (existing) on success.
I have already made successful requests with other functions but i can't get ...
1
vote
1answer
268 views
Parsing of HTTP Headers Values: Quoting, RFC 5987, MIME, etc
What confuses me is decoding of HTTP header values.
Example Header:
Some-Header: "quoted string?"; *utf-8'en'Weirdness
Can header value's be quoted? What about the encoding of a " itself? is ' a ...
2
votes
3answers
490 views
Create dynamic options menu with kdialog bash script : Printf can't do the job ? quoting issue
i would like create a menu with kdialog like this
kdialog --menu "choose your profile" "\"-vcodec mpeg2\"" "mpeg"
"\"vcodec stuff -ab 100ak\"" "avi" "\"-acodec mp3 -ab 128k"\" "mp3"
now
...
3
votes
5answers
143 views
Which form is preferable to use in Bash?
I'm studyng Bash, and I see that the form
C=example
echo "$C"
give the same result of the form
C="example"
echo $C
I'd like to know if is better put the " " in the assignment ...
2
votes
4answers
378 views
\' (backslash, single quote) in a Ruby string
I am using Ruby 1.8.7, trying to generate a string with the \' characteres, in order to create a script for running in MySQL. The result should be like this:
INSERT INTO table (name, description) ...
1
vote
1answer
81 views
Confirm the existence of directory under the home directory
I would like to check the existence of directory and write the script below, but this doesn't work properly.
#!/bin/sh
if [ -d "~/sample" ]
then
echo 'exists'
else
echo 'NOT exists'
fi
...
2
votes
2answers
480 views
how to recognize \n in bash
Have such script:
#! /bin/bash
typeset -i i END
let END=500 i=1
remainder=1
accum="use yola_test;\n"
for ((i=1;i<=END;++i)); do
# str1=$( echo "$i" | md5sum | md5sum )
title="title_$i"
# ...
0
votes
1answer
63 views
MySQL Escaping issues
I am doing the following SQL Command:
INSERT INTO lastlogon( username, lastlogon, datechecked )
VALUES ('? Guest_SeEeTooxSafiaH? ? ? ? ? ? ', '1969-12-31', NOW( ))
Which PHPMyAdmin states was ...
4
votes
5answers
393 views
In PHP, how do I make a mySQL select query that contains both quotation marks and apostrophes?
I'm getting data into my database without any problem using mysql_real_escape_string.
So an entry in the database might be:
1/4" Steve's lugnuts
So that's perfectly in the database.
Now I want to ...
1
vote
1answer
187 views
BASH quotes in debug mode
I'm using debug mode in a BASH script to trace the commands that have been executed by the script. So far this has all worked very well but now I need to run a command with some options contained in a ...
0
votes
2answers
70 views
Quoting in the function arguments error
How should be fixed command variable to get a correct behavior?
#!/bin/bash
function f ( )
{
echo "$2"
}
command="f --option=\"One Two Three\" --another_option=\"Four Five Six\""
$command
f ...
0
votes
2answers
239 views
Quoting in VBscript
I am using vbscript to query an "at" job that is executing a specific command and I believe I have the quoting wrong. I have confirmed the script works as intended when I query something that does not ...
0
votes
2answers
71 views
What is the best way to write a part of buffer with quoting?
For exaplme, I have some buffer : const char* buf with next content (mysql packet):
72 00 00 00 select * from `db` where (`name` = "Bill's car")
and i need to write to ostream only query with ...
1
vote
2answers
388 views
svn | awk | mail works in bash, but not in cron job
I have the following command to show changes to a subversion repository
svn log -v -r{$(date +%Y-%m-%d)}:HEAD http://therepository | awk '/^r[0-9]+ / {user=$3} {if (user=="username") {print $1 $2 ...
3
votes
1answer
148 views
XML quoting in Python
How to quote XML to get the string with quoted control characters in python?
Source string:
<root namespace="value" id="guid">
<child name="child1">Content</child>
...
0
votes
2answers
92 views
Inserting text into a varchar which happens to contain sql in MySQL?
I'm trying to insert text which happens to contain a sql query into a varchar, but MySQL is producing an error when I execute the insert. How can I accomplish this without producing an error?
Here's ...
2
votes
2answers
260 views
Forcing an argument in a Clojure macro to get namespace-captured
I am working on a Clojure macro to help build GridBagLayout-based JPanels. I can get Java classes in a defaults map inside the macro to namespace-qualify, but not those passed in as arguments. What ...
