Tagged Questions
0
votes
3answers
52 views
Using grep to list lines starting with
I am trying to Use the GREP command to list all lines which contain the letter
'd' at least twice in a row (that is, next to each other), from file "test". But i can't get it to work. Can someone ...
0
votes
1answer
52 views
How to extract specific parts of the path and filename in linux
My current task is renaming a whole lot of files across multiple directories to different identifiers.
So I have several directories like: b01, b02, b03, etc. Within each directory is filenames such ...
0
votes
2answers
46 views
Stripping email addresses from arbitrary file
What's the best way to get user@host.com combinations from a large fileset?
I assume that sed/awk can do this, but I'm not very familiar with regexp.
We have a file i.e., Staff_data.txt that houses ...
0
votes
5answers
75 views
AWK regex convert 3 letter word beginning with 'a' to uppercase
I have my regex expression to find 3 letter words beginning with "a"...
\b[aA][a-z]{2}\b
(seems to work, according to this! check it out: http://rubular.com/r/Jil0E4WZnW)
Now I need to know how ...
0
votes
0answers
50 views
expect script regexp not matching
I have the following expect script and trying to match output which is returning empty lines. Can someone help with the regexp?
#!/usr/bin/expect -f
set force_conservative 1
set timeout ...
-2
votes
1answer
25 views
regex streamline output using awk or sed [closed]
Here is the output of DNS zone check command
[root@dev named]# /usr/sbin/named-checkzone -w /var/named example.com db.example.com
zone example.com/IN: loaded serial 2013042402
OK
I want this output ...
0
votes
1answer
52 views
Regular expression to extract words before a slash
I'd like to extract the two words FIRST and SECOND from the phrase below, i've tried with this regex, to get the word before the slash but it doesn't work : / btw it's on python:
import re
...
0
votes
1answer
36 views
regex find what's after slash without showing the slash
I have a script that split the informations in a line, i've succeeded to split it and extract the informations i need but i have the slash that shows up :/ i'de like to get only what's after it here's ...
0
votes
1answer
61 views
Read only lines that contain certain specific string and apply regex on them
Here's my code: I have a script that reads a file but in my file not all the lines are similar and I'd like to extract informations only from lines that have I DOC O:.
I've tried with an if condition ...
1
vote
2answers
32 views
My script returns an error when the test isn't corresponding to the Regex: 'NoneType' object has no attribute 'group'
My script down here is supposed to return a result in this format
[ {'heure':xxxx,'mid': xxxx,'type message': "e.g SMS.Message ", "Origine":xxx,"Destination":xxxx}]
Well it works but without ...
-2
votes
1answer
32 views
Regex Python Extract Informations [closed]
I wonder if there's a way in python to be able to extract the informations from a line like the example below and put it in a
table:
table = [ Time: 01:09:25.258, O:Localhost, R:192.168.1.1 id:62 ] ...
0
votes
1answer
43 views
How to extend block with one character and return to initial block after search?
I'm trying to do a search within a visual block, (from a vimscript).
This is my code:
aaaaaaaaaaaa
a26 text tea
atext text a
atext 27 12a
a11 text 25a
aaaaaaaaaaaa
Let say my block selection is ...
0
votes
1answer
89 views
javascript test function return always false
I don't understand why it is giving me false while the two strings are equal.
var str = 'https:\/\/monsite.com\/"onload="alert(1)"';
var patt = /https:\/\/monsite.com\/"onload="alert(1)"/i;
var ...
0
votes
4answers
62 views
Linux - regex expression
I have a file which has the following pattern,
QID, Test, Suite, .......
001, abcd, pqrs, ........
002, xyz1, fsdfds, .......
I want to write a scipt to delete the QID column and the "," and the ...
3
votes
4answers
124 views
Parse date timestamp in SQL filename using RegEx
I am building a bash script for backing up databases. I've already set up a cron job to running this script daily and I already can dump the .sql files according to the following format:
...
0
votes
1answer
152 views
Unix shell script: Inject text when “text pattern” is found
Say I have two files:
- data.txt
- report.txt
The report contains a text with some "placeholders", example:
HPLC results for sample: <insert-sample-id-here>, elements analyzed: ...
1
vote
3answers
53 views
checking version in shell script using regex
Could anybody suggest a reg ex for checking versions
What if I like to check any update version in 1.0.0 release may be 1.0.0-1 or 1.0.0-2 or 1.0.0-3 and I just need to check for what update version ...
3
votes
3answers
88 views
Python - Parsing a specific value from a URL within a line
I've managed to get my script to print out a line of text based on what is in the line:
if "cvename" in line:
CVE = list_of_line[4:5]
print "The CVE number is ", ' '.join(CVE) ...
1
vote
1answer
268 views
Clarification of expect script regex evaluation
I have been teaching myself expect scripting and I have a few clarification questions regarding expect script regex expressions. I have created a code that spawns a Sun iLOM ssh session and then ...
0
votes
1answer
145 views
How to remove white space after sequence of characters in a csv file?
Can anybody point me to where i can write a script to remove white space in a csv file, however i only want to remove white space after a specific sequence of character(s) so i expect to need Regular ...
0
votes
1answer
152 views
Invalid preceding regular expression given by sed
I am and have been working on a sed script file and I am running into an "Invalid Preceding regular expression" error when I run it. Below is the file in its entirety.
I have done much search on ...
-1
votes
1answer
68 views
How to modify a regular expression for HTML tag name? and get that tags independent?
The function prototype:
findHTMLElement( $output, $tagName );
Look at regular expression:
preg_match_all( "/\<{$tagName}(.*)\>(.*)\<(.*)\/(.*){$tagName}\>/is", $output, $matches );
...
0
votes
4answers
130 views
Python regex split function multiple delimiter
Here i am playing with python regex and here is my uname command output
$ uname -n
usa-ca-app01.example.com
Here is my python script
#!/usr/bin/python
import os
from time import strftime
import ...
1
vote
1answer
41 views
Regex pattern in python: InvalidMatch
I am trying to locate the following header in a list of files and replace it with my own.
/*************************************************************************************
* Company: XXX
* ...
2
votes
4answers
694 views
Regular expression for 6 digit number with optional 2 decimal digits
Hi guys i need regular expression for 6 digit number with optional 2 decimal digit
Allowed values:
.1 .11 0.11 10. 10.1 10.12 00.00 0.0 00.00
123456 12345 1234 123 12 1 0 0. 123. ...
0
votes
3answers
63 views
Sed script - Removing lines
I need help with my sed script. I have a XML-file where I have to remove everything except the text enclosed in these tags:
<TEXT>......</TEXT>
<HEADLINE>......</HEADLINE>
...
1
vote
3answers
54 views
what's the simplest way to escape Javascript sequences that would result in undesired functionality if embedded in the script tags of HTML code?
I recently worked on a project that required me to read javascript code from .js files and embed it inside the script tags of HTML code. I thought this was a trivial task, until I learned that some ...
2
votes
2answers
38 views
What is the regex expression or?
I'm trying to find all files that are named "abc", "qwe", "asd" or "zcx".
find . -name "abc"|"qwe"|"asd"|"zcx"
is this not correct?
0
votes
3answers
227 views
Windows scripting: list files not matching a pattern
In Windows 7 command prompt, I´d like to list all files of a folder which name does not start with abc. I have tried:
forfiles /P C:\myFolder\ /M ^[abc]* /S /C "CMD /C echo @file"
Where is my ...
1
vote
4answers
183 views
How to check whether a string has at least one alphabetic character?
I want to check whether a string has at least one
alphabetic character?
a regex could be like:
"^.*[a-zA-Z].*$"
however, I want to judge whether a string has at least one
alphabetic character?
...
1
vote
2answers
117 views
AWK replace $0 of second file when match few columns
How I merge two files when two first columns match in both files and replace first file values with second file columns... I mean...
Same number of columns:
FILE 1:
121212,0100,1.1,1.2,
...
1
vote
2answers
95 views
Printing out the value from a matrix
I have a task which consumes arbit CPU and memory over time. It gives me an output executing the following linux command:
mpstat -u 1 -P ALL
The output looks like:
02:22:14 PM CPU %usr %nice ...
2
votes
2answers
124 views
Emacs: regular expression replacing to change case (in scripts)
This is related to
Emacs: regular expression replacing to change case
My additional problem is that I need to script the search-replace but the "\,()" solution works (for me) only when used ...
1
vote
2answers
152 views
Powershell regexp
I want to replace or insert parts of an UNC path using regex.
Example input:
\\\\PCSHARE\Homedrive\John Doe
Example output:
...
0
votes
1answer
105 views
Python Script text file replace using regex [closed]
I have a script which download source code, and take languageID from the code.
However I now need to create a function, which can open one of my text file and start replacing the langid.
Like in ...
0
votes
3answers
1k views
shell scripting grep command
I want to find whether a string contains a forward slash using "grep" command. It is easy at the beginning, and I wrote the following script.
foo=someone/books
if [ `echo "$foo" | grep '/'` ]
then
...
1
vote
3answers
574 views
BASH shell use regex to get value from file into a parameter
I've got a file that I need to get a piece of text from using regex. We'll call the file x.txt. What I would like to do is open x.txt, extract the regex match from the file and set that into a ...
0
votes
2answers
170 views
Perl regex substitution not working with global modifier
I have code that looks like the following:
s/(["\'])(?:\\?+.)*?\1/(my $x = $&) =~ s|^(["\'])(.*src=)([\'"])\/|$1$2$3$1.\\$baseUrl.$1\/|g;$x/ge
Ignoring the last bit (and only leaving the part ...
0
votes
3answers
69 views
Use sed with regular expression for space
I am trying to use sed to substitute a string taking into account an whitespace.
Example:
Hello World
to be replaced by
Hello George
I tried:
sed -e ...
0
votes
1answer
216 views
Powershell switch regex fails when run from script but succeeds in console
This is running in Powershell v2 on a Windows XP SP3 in a powershell -noprofile.
The Powershell script below works if I copy and paste it into the console but does not work if I run it as a script. ...
0
votes
1answer
43 views
Extract strings from thousands of files using \patterns\
I've downloaded freedb database, and the files are structured like this:
ex ("21100012" file):
DISCID=21100012
DTITLE=Various / Oberbayern '99 (CD 1)
DYEAR=1999
DGENRE=Sampler
...
3
votes
3answers
288 views
Writing script to populate database.yml file and need regex to identify a particular lien
I'm in a situation very similar to the person in this post. I'm trying to write a script that populates values in the database.yaml file. Problem is...I totally don't understand what's going on in ...
1
vote
4answers
207 views
How to verify if the string also starts and ends with a space in shell script?
How to verify if the string also starts and ends with one or more space(s) ?
if [[ $username =~ [^0-9A-Za-z]+ ]]
(basically input should be alphanumeric, no spaces anywhere, even in the beginning ...
0
votes
3answers
230 views
curl http://subtitle.co.il/browsesubtitles.php?cs=movies | grep -o -P '(?<=list.php\?mid=)\d+'
New to bash scripting, The previous answers didn't helped me.
I am trying to harvest ids from web pages and I need to parse page1, get a list of ids, and use them to parse corresponding web pages.
...
2
votes
2answers
239 views
egrep lines starting with r and ending with g
I need to find and display lines in the shell using egrep that start with r and end with g.
I have
egrep -e "^r*g$" testfile.txt
but it is not giving me any results, what am I doing wrong?
2
votes
1answer
105 views
Delete similar lines csh
I've seen several articles on deleting duplicate lines, but I need something a little more specific. Here is an example of some raw data:
11111 AA 1 date1
11111 BB 64 date1
11111 BB 64 date2
...
...
-1
votes
2answers
173 views
using shell script to grep string between string a and string b
For example:
I have a txt file like :
text("hello")
text("world")
text("once")
text("again")
Aim to replace
hello with string_1,
world with string_2,
once with string_3,
again with string_4,
...
1
vote
2answers
326 views
Bash script to insert data from file at points specified by string
I'd like to build a bash (or something else) script that when run will search it's own directory (recursively) for files with the html extension, and change in them all the code between specific tags ...
1
vote
2answers
170 views
Unix CLI script to rename folders containing space
I have a directory with folder structure as follows:
DATA -- ABD 1231345 -- 2012_01_08
-- 2012_03_09
-- 2012_06_11
-- DEF 4859480 -- 2012_02_10
...
0
votes
4answers
88 views
Unix CLI script to rename folders using their pre-existing names
I have a directory with folder structure as follows:
-- DATA -- ABD 1231345 -- 01-08-12 // date in mm-dd-yy format
-- 03-09-12
-- 06-11-12
-- ...

