Tagged Questions
-3
votes
1answer
43 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
2answers
25 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
60 views
Shell Scripting: RegEx in if Statement
I can't seem to figure out how to write a regex correctly in an if statement. I wanted it to print out all the lines with "End Date" in it.
NUMBERS contains a text file with the following content:
...
0
votes
2answers
35 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 ...
0
votes
2answers
62 views
Perl one liner + regular expression to match part of word
I write Perl one liner code in order to match IP address according to the following rule:
match only the three first octets while the four octet must be valid 0-255 , additional to that number or "." ...
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
...
1
vote
2answers
49 views
Regular expression to replace a part of a config file
I recently made a shell script to automate the process of loading a file into snmp daemon with all the steps.
In the end I need to edit a conf file on the server, and I realize I need to use regular ...
-1
votes
2answers
41 views
What is meaning of this .*)\.[0-9]+$ regular expression?
What is meaning of this .*)\.[0-9]+$ regular expression? Anybody let me know please !
1
vote
2answers
58 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
5answers
69 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 ...
1
vote
2answers
60 views
How to extract text between parentheses within a longer string using awk?
I'm somewhat a beginner with awk/regex, so I apologize for the noobish question. I seem to have the hardest time with awk when the fields are combined. I have a longer awk script that is parsing ...
1
vote
4answers
64 views
Unix command for replacing distinct strings
I have this sed command:
sed 's/old/new/g' file.txt
but it also replaces the old inside the string 'folder'. how can i replace the string if there is not a character at it's left or right?
0
votes
1answer
70 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 # ...
0
votes
0answers
45 views
Regex from ruby string to bash
I am trying the pass the sed -i '' 's/,\([^ '\''"]\)/, \1/g' app/models/campaign.rb command from my ruby program, but i am not able to get the string right (esp for the double quote and the backslash ...
1
vote
3answers
52 views
How to remove a line containing specific string from file with sed command
I have the following file :
#!example
#!toto
example
#example
;example
toto
example
I want to remove the lines containing the string "example" except the lines start with "#!".
So the result file ...
0
votes
3answers
49 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
...
0
votes
2answers
74 views
Replacing a string with file using sed, without using two sed commands?
In the process of automating a license header, I have a place holder: /* @@LICENSE_HEADER@@ */, which I can replace with a file named license with the following:
sh-3.2$ sed -e $'/\/\* ...
-1
votes
2answers
32 views
get substring with between parenthesis using regrex [closed]
I have a bunch of lines as below:
PING planetlab2.tau.ac.il (192.114.4.3) 56(84) bytes of data.
I want to obtain the ip addresses from these lines, which are between the first ( and ) pair
how to ...
0
votes
2answers
67 views
User defined Regular expression pattern match, how to?
I got a complicated file having the contents as:
Original File
AAA
{
"(BBB|KKK)"
{
B_1 abc;
B_2 bcd;
B_3 efg;
B_4 xyz;
}
CCC
{
C_1 cbc;
C_2 dcd;
}
}
DDD
{
...
1
vote
3answers
58 views
How to find the multiline pattern match (they must be first time match)?
I know this question How to find patterns across multiple lines using grep? But I think my problem is more complicated. So I need help.
I have a dictionary file BCFile as
boundary
{
inlet
{
...
0
votes
2answers
36 views
How to create file 11.txt 22.txt … 99.txt with regEx? [closed]
I try used regular expressions about generate file.
Example
11.txt 22.txt ... 99.txt
I used regEx with pattern touch {1..9}{1..9}.txt
Results is
11.txt 21.txt 31.txt .... 99.txt
it not ...
4
votes
3answers
344 views
Shell Script - list files, read files and write data to new file
I have a special question to shell scripting.
Simple scripting is no Problem for me but I am new on this and want to make me a simple database file.
So, what I want to do is:
- Search for ...
0
votes
2answers
110 views
Generating regex, from hosts file using bash/sed/awk
I have a hosts file which is in the following format:
# comments
(ipv4/ipv6 address) (multiple hostnames)
.
.
.
I need to convert them to an optimised regular expression using bash/sed/awk. For ...
0
votes
1answer
33 views
Extract URL from two types of lists
I have to extract a special URL from two types of lists.
wav_list_01.txt:
http://www.example.com/3277rdsh6721vs2981fg66_453.wav?ID=8572145"
...
0
votes
4answers
28 views
convert a single column into tabular format
I have a file which contains all the entries in a single column like:
0
SYSCATSPACE
16384
13432
2948
1
1
TEMPSPACE1
1
1
applicable
1
2
USERSPACE1
4096
1888
2176
1
But I want to convert this in a ...
5
votes
1answer
90 views
Awk: How to work on multiple files.txt in folder and subfolders?
Given a folder with subfolders themselves with multilangual .txt files such as:
But where is Esope the holly Bastard
But where is 생 지 옥 이 군
지 옥 이
지 옥
지
我 是 你 的 爸 爸 !
爸 爸 ! ! !
你 不 會 的 !
I already ...
1
vote
1answer
43 views
2
votes
1answer
30 views
How to remove a line with space using sed?
I want to remove a line which begins with <Field name="LastDate" in a xml file.
The space seems to be creating issues here sed -i /^<Field name="LastDate"/d test.xml. How do I go about this?
0
votes
1answer
142 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: ...
0
votes
4answers
54 views
How to list all the files matching criteria and select first file using shell script?
I am trying to write one shell script which will
List all the files matching some criteria like 'files having .txt extension' and then
Choose first file from that list
I have managed to list all ...
1
vote
1answer
70 views
Create directory based on part of filename
First of all, I'm not a programmer — just trying to learn the basics of shell scripting and trying out some stuff.
I'm trying to create a function for my bash script that creates a directory based on ...
0
votes
2answers
79 views
shell and regex matching spaces
Here's my question:
e.g
echo 123\< abc\\\ efg
The output should be
123< abc\ efg
My regex in lex file is
[^\n ]*[\\]+[^\n]
If I use this regex, my output is going to be
123< ...
-1
votes
1answer
51 views
Text parsing using AWK
I have a log file in the following format:
MTV (B) VAR H'03 7F5B H'147 H'72FD
(B) VAR H'00 5B30 H'147 H'2718
(B) VAR H'05 C41F H'147 H'3AA4
(B) VAR H'06 4901 H'147 H'2DFD
...
0
votes
4answers
84 views
How to split a string in shell
I have a variable as
string="ABC400p2q4".
how can I separate ABC400 and p2q4.
I need to separate it in two variables in such a way that as a result I get
echo $var1
ABC400
echo $var2
p2q4
In ...
0
votes
1answer
40 views
gsub regex pattern
I am using gsub to substitute tabs with commas
gsub(/\t/,\",\")
a\tb will be a,b
In some instances I have two tabs follwed by each other
For example
a/t/tb
In that case gsub converts it to ...
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 ...
0
votes
5answers
54 views
Regex to extract version from string
I have a string which has below value
String1=winos-app-1.2.0-4.20120308.InLinuxOS.x86_64
I need to extract only version from this string which is "1.2.0-4"
I have tried regular expression as ...
1
vote
3answers
78 views
what is the Regular Expressions to use to find if a line contain a word?
I would like to check in my script if in a line i have the word device i tried this regex
if[$SERIAL =~ /device/] but the execution result commande unkown. this is my script i try to install ...
0
votes
1answer
75 views
Get lines from stdout after timestamp
There is a huge log of errors/warnings/infos printed out on stdout. I am only interested in the lines logged after I start a specific action.
Other information: I am using Python to telnet to a shell ...
0
votes
2answers
133 views
Bash regex to match dots and characters
I'm trying to use the =~ operator to execute a regular expression pattern against a curl response string.
The pattern im currently using is:
name\":\"(\.[a-zA-Z]+)\"
Currently however this ...
0
votes
2answers
68 views
How to convert those characters not quoted to upper case?
To format thousands of SQL queries I need to convert all the characters not in quotation mark pair to upper case.
For example:
select * from region where regionkey = 'America'
to be converted to
...
0
votes
3answers
83 views
Bash regex not capturing
I have a string which includes the text:
...,"names":"exampleName",...
I have the following if statement that checks if the regex pattern matches the string:
if [[ $string =~ names\":\"(\w+)\" ]]; ...
0
votes
2answers
53 views
Transform mysql 'INSERT' statement into a CSV line
I need to convert mysql dump file to CSV format before importing to a data warehouse server.
INSERT INTO `temp` VALUES ...
0
votes
5answers
68 views
Delimiter substitution excluding character inside string column
I have got a 3Gb file in this format:
...
201211 001093223359 "PLANO ESPECIAL" "PLANO NOVO"
201211 001199175239 "PLANO ESPECIAL" "PLANO NOVO"
201211 001292676219 "PLANO ESPECIAL" "PLANO NOVO"
...
I ...
0
votes
1answer
47 views
Bash script - Need help getting match and substitution working
I am trying to get parameter substitution working in my bash script ... I know I have gotten this all wrong ... I am trying to create a script that will rename a PART of a file.
#!/bin/bash
for i in ...
0
votes
1answer
88 views
Rename file containing substring 'foo' with 'bar'
I want to rename all files which contain the sub-string 'foo', replacing it with 'bar' within a given folder.How can I accomplish this?
Update:
for i in ./*foo*; do mv "$i" "${i//foo/bar}";done
...
0
votes
3answers
46 views
Regex to match logfiles 1 to 11
I would like to simply fetch logfiles 1 to 11 out of 500 with one regex:
log4j-cnode1.log.11
log4j-cnode1.log.10
log4j-cnode1.log.9
log4j-cnode1.log.8
log4j-cnode1.log.7
log4j-cnode1.log.6 ...
3
votes
2answers
83 views
_@[^@]*@ in bash
every one, i've a problem about this expression in a shell script:
expr "$VERSION" : "_@[^@]*@"
Who can tell me what does "@" stand for here?
44
votes
5answers
18k views
How to use '-prune' option of 'find' in sh?
I don't quite understand the example given from the 'man find', can anyone give me some examples and explanations? Can I combine regular expression in it?
the more detailed question is like this: ...


