Tagged Questions
0
votes
2answers
46 views
How to use command grep with several lines?
With a shell script I'm looking for a way to make the grep command do one of the following two options:
a) Use the grep command to display the following 10 lines of a match in a file; ie, the command ...
1
vote
2answers
51 views
bash script to remove prefix in file name [closed]
A bash script request(or fish script).
I have a bunch of files like:
SDF1211B-03 - name - lastname.info
SDF1213B-04 - names - lastnames.info
SDF1211B-05 - name & name - lastname & ...
2
votes
4answers
100 views
Validating that a string contains only ASCII characters and digits
I'm doing this to validate a username:
if [[ "$username" =~ ^[a-z][_a-z0-9]{2,17}$ ]]; then
But actually, a username containing unicode characters like é, ç, à etc... is accepted.
What regex class ...
0
votes
2answers
31 views
need to rename many files in directory using sed and find
I would like to rename all files named *-6.0.dll with *-6.1.dll
I tried:
find . -name '*-6.0.dll*' -exec mv {} $(echo {} | sed -e 's/-6.0.dll/-6.1.dll/g') \;
but this didn't work; the file names ...
0
votes
4answers
27 views
Regex replace substring with known first and last word
I have a string say "xyz walked his dog abc". And I want to remove the substring "walked his dog" and just have "xyz abc". How can I do so in bash regex?
3
votes
2answers
28 views
Why sed doesn't print an optional group?
I have two strings, say foo_bar and foo_abc_bar. I would like to match both of them, and if the first one is matched I would like to emphasize it with = sign. So, my guess was:
echo 'foo_abc_bar' | ...
3
votes
2answers
45 views
bash regex works on linux but not solaris
The following shell script works in Linux, but won't on Solaris,
#!/usr/bin/bash
while getopts ":s:" opt; do
case $opt in
s)
# Check IP against regex
if [[ "$OPTARG" =~ ...
0
votes
4answers
38 views
How to terminate a regular expression and start another
I have a file which have the data something like this
34sdf, 434ssdf, 43fef,
34sdf, 434ssdf, 43fef, sdfsfs,
I have to identify the sdfsfs, and replace it and/or print the line.
The exact ...
0
votes
3answers
53 views
parsing string in bash
I have a bunch of C++ files in a directory called src. I needed to find all the files that have *Test.cc, but without the .cc file type, so it would just be [filename]Test.
I currently have:
1 ...
1
vote
3answers
40 views
Extract IP and Pointer Record from zone file
I'm reading in a file which is part of an AXFR file that I have exported to a txt file. Basically, I cat out the file, grep out ONLY the PTR records (I'm only interested in these right now). I've ...
2
votes
2answers
73 views
Find by regex and replace match to lowercase in Bash
I would like to replace all contents of a file that match a given regex to their lowercase equivalent. Like:
grep -o '[^ ]*[A-Z][^ ]*.png' file-21-05-2013.sql* | awk '{print tolower($0)}'
The line ...
1
vote
4answers
48 views
Regex to match string between quotes
I'm using a shell script to read in a file and then piping the output to grep and trying to extract the string contained between two quotes (while excluding the quotes).
./readFile.sh | grep -e ...
-3
votes
1answer
54 views
How to separated zero with point in my bash script? [closed]
My script
echo -n "number 1 : ";
read bil1
echo -n "number 2 :";
read bil2
jlh=$(echo $bil1 + $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0' -e 's/\.0*$//');
echo " Your result : $bil1 + $bil2 ...
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 ...
1
vote
4answers
75 views
AWK - Is there a way to match partially a numeric string?
I'm having some trouble with matching some lines with a numeric constant (given by an argument). For instance, given the following data in a file:
0.6880228954232877 0.2284901699470367 ...
1
vote
5answers
62 views
Run file until the output matches regular expression
I would like to write a bash expression that would run the file "a.out" until the output of the file is equal to "b\na" where "\n" is a newline.
0
votes
1answer
33 views
Why does the word boundary not match?
I have the following files from which I would like to match a set of specific files
TS_1.zip
The one.zip
Linux Mirror.zip
Linux.Mirror.zip
LinuxWindows1.zip
LinuxWindows2.zip
LinuxWindows3.zip
...
0
votes
1answer
42 views
How sed 's/pattern/subtitution/2g' really work?
Why echo 'word word word word word word' | sed 's/[a-zA-Z]* /DELETED /2g'
prints word DELETED DELETED DELETED DELETED word ?
Why sed didn't substitute the last word ?
0
votes
2answers
28 views
bash regex (or test) strange behavior
[myuser@mycomputer]$ word="hello"
[myuser@mycomputer]$ if [[ $word =~ "^hello$" ]]; then echo "it was a hello"; else echo "must have been a goodbye"; fi
must have been a goodbye
I don't understand ...
0
votes
2answers
33 views
Shell Scipting: RegEx for does not begin with
The following checks if it begins with "End":
if [[ "$line" =~ ^End ]]
I am trying to find out how if something does not begin with "02/18/13". I have tried the following:
if [[ "$line" != ...
1
vote
3answers
59 views
How to hide or delete the zero in my bash script?
This is my script:
echo -n "number 1 :";
read bil1
echo -n "number 2 :";
read bil2
multiple=$(echo $bil1*$bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./');
echo " Your result : $bil1 * $bil2 = ...
0
votes
2answers
43 views
Write partly tab-delimited data to MySQL database
I have a MySQL-Database with 7 Columns (chr, pos, num, iA, iB, iC, iD) and a file that contains 40 million lines each containing a dataset. Each line has 4 tab delimited columns, whereas the first ...
0
votes
1answer
42 views
Bash shell: How to check for specific date format?
I have a Bash shell script which checks to see if a shell variable contains a number:
if ! [[ "$step" =~ ^[0-9]+$ ]]
then
exec >&2; echo "error: $step is Not a step number.";
...
0
votes
2answers
36 views
How to retrieve url from string in shell?
I want to extract the url from a string with shell/bash script, if there is more than one url in the string, then only the first one should be returned.
I have provided some examples of input and ...
2
votes
7answers
65 views
Extract a piece of a string in bash?
I have following string in BASH and I need the email address at the end of the line
TAG instance i-1846f265 AdminEmail dummy.email@domain.com
As far as I know the spacing between the words is ...
0
votes
2answers
47 views
Adding a leading zero to a float number in a bash script
My script
#!/bin/bash
echo -n "number 1 :";
read number1
echo -n "number 2 :";
read number2
jlh=$(echo $number1 + $number2 | bc -l | sed 's/^\./0./');
echo "your result : $number1 + $number2 ...
-4
votes
0answers
57 views
Regular expression (trying to match words bash)? [closed]
I need help with regular expressions in unix, bash shell. What words would the regular expression "[hsm]ea[lt]" match? This requires a simple answer.
0
votes
2answers
26 views
Bash - how to run command based on match/unmatch results from regex
I am writing a Linux bash function in ~/.bashrc to do something automatically for me
#!/bin/bash
......
......
function cog102start
{
LD_LIBRARY_PATH=/opt/ibm/cognos/c102_6/cgi-bin
...
3
votes
4answers
122 views
split a string from a sequence, with regex
I need a regular expression that matches letters and digits, but doesn't match the sequence "00".
e.g. "hello00world00number001" should match: "hello", "world", "number" and "1".
I tested without ...
0
votes
1answer
53 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
3answers
49 views
Retrieving digits from multiple file names using regex
Given files:
aaabbcc.43.311b.file
ddeeff.x51.311b.file
ffg.1.311b.file
hh.ii.jj.x26.311b.file
ll.m.311.311b.file
How would I get the numbers within the file name but not 311b? So I would like to ...
1
vote
1answer
88 views
Matching zero or more characters in sed
I was practicing some commands using sed when I was confused by the output of the following command:
echo 'first:second' | sed 's_[^:]*_(&)_g'
My question is: Why would this command only wrap ...
0
votes
5answers
52 views
Regex remove comments but not shebang
I got a regex that removes the comments in bash using this regex code
'/^\#/d'
but it also removes the #! which should be not because it's not a comment tag but a shebang
so how can it be done to ...
0
votes
3answers
52 views
Using sed to remove words with common prefix
I'm trying to extract information from source code to create an API for others to use. I can grep the file to get a list of variables with common signatures, but some variables are polymorphic, so I ...
1
vote
2answers
61 views
Command line—Replace string from previous command and execute
I'd like to know the shortest command for correcting a mistake in the previously executed command.
Given I executed the following command
cd /Users/USERNAME/Library/Preferences/ByHost
I would like ...
0
votes
3answers
35 views
How to find a double quoted string using grep and regex?
I'm trying to find all the occurrences of the string "5.1" in all files under a certain directory.
I've tried using the following command but it finds none:
#grep -Re[5]+\.+[1] .
What am I doing ...
3
votes
1answer
29 views
expr string matching-mixed number and chars?
When I typed
$ expr match "can't find" 'c'
$ 1
Then I typed
$ expr match "234can't find" 'c'
$ 0
I can't figure out why?
0
votes
2answers
48 views
sed match date format Apr 25, 2013
Can anyone help with a search & replace script (sed) to match a date Feb 24, 2009 and replace it with a white space?
sed 's/ \(Jan\|Feb\|Mar\|Apr\|May\|Jun\|Aug\|Sep\|Oct\|Nov\|Dec\) ...
0
votes
2answers
78 views
Sed remove time stamp from file with regex
I'm trying to use sed to delete a pattern from an html file. The time stamp consist of a 1-2 digit number a four letter word and then the word ago
example:
25 mins ago
or:
1 hour ago
and so on. ...
1
vote
1answer
49 views
match position of all matched character in string with regexp in bash
I'm trying to get all positions of specific characters matched via regexp. I can do this with expr index but this match only the first character in string.
echo $(expr index "$z" '[\x1F\x7F-\x9F]')
...
2
votes
1answer
83 views
What is the difference between sed and awk regular expression
I have one awk and one sed example. Both seems to be using the same regular expression, but the output differs. So the pattern expansion must be getting different. But i can not get the difference. ...
0
votes
3answers
70 views
Splitting all txt files in a folder into smaller files based on a regular expression using bash
I have a folder containing large text files. Each file is a collection of 1000 files separated by [[ file name ]]. I want to split the files and make 1000 files out of them and put them in a new ...
0
votes
1answer
76 views
Generating different filenames from unique file in shell script
I need to execute my evaluateParameters.pl Perl program, for do it, i want to create a shell script.
#!/bin/bash
COVARIANCE=~/Desktop/ncRNA/CovarianceModels/rRNAs_cov/bitscores.rRNA.dat # ...
1
vote
3answers
90 views
sed - replace several consecutive lines matching pattern
I am trying to replace two consecutive lines in a file with my text. For example:
testfile.rb
class Test
def procedure
nil
end
end
I am trying to achieve this:
testfile.rb
class Test
def ...
0
votes
1answer
57 views
Strip double dots from path in bash
I wonder how it would be possible to use a regular expression to simplify double dots from a file path (the path may not actually exist) ?
For example change /my/path/to/.././my/./../../file.txt ...
0
votes
3answers
59 views
Grep - using get “Match” to the end of text file with .* not working
I have a long text file in ascii. Every so often it will have Page: ##### in a line of it. I would like to match starting at "Page: 25141" and every single line after that to the end of the document.
...
3
votes
1answer
50 views
Regex square close bracket
I can use Bash to match a set of characters
$ [[ a =~ [abc] ]]; echo $?
0
However if I want a close square bracket ] to be included in the set, it fails
$ [[ a =~ [abc\]] ]]; echo $?
1
$ [[ a =~ ...
1
vote
3answers
51 views
HOW to solve the point in Regex?
the file is:
google.com a
go.gle.com a
google.com.google.com b
google.com.cloud.com c
when I use this way:
grep -nre '^\<google.com\> ' file<br>
I can get:
1:google.com a
But ...
0
votes
2answers
46 views
bash: !.url": event not found while extracting filenames
I am trying to extract filenames with .url extension using $name =~ s/\.url$//;. However, some of the names contain an exclamation mark just before the extension, e.g.:
"for example-this!.url" ...
0
votes
3answers
50 views
if first space is 2 space, make it 1 in a file
i have a text file and in some lines the first space from left is 2 space long and i want it to be 1 space long. whats the script for this in bash?
123 2 5//problem
1 2 5
1 2 5
1 32 5//problem
...


