grep tag

11 questions


1 answers
403 views
0
I want to separate each new line with awk and extract a record with a specific string in grep.

How do I extract a record from address.txt that is separated by line breaks to four records and contains the string Pass?If you enter the following command, you will see all output.cat address.txt |aw...

2 years ago

1 answers
88 views
0
Unable to use end-of-line specification using $ symbol in grep

Prerequisites/What you want to achieveI am learning regular expressions in bash on macOS.I tried to end the line with the $ symbol in grep, but the search pattern was not recognized.problems you are h...

2 years ago

3 answers
108 views
0
Search for OR with wildcards in egrep

I tried to extract the server name by egrep from the file below.===test.txt===TokyoAsv01TokyoBBsv01tokyoCCsv01TokyoAsv02TokyoBBsv02=====end====cat/tmp/test.txt | egrep'*sv01 | * sv02'This will work, b...

2 years ago

1 answers
136 views
0
Treatment of Regular Expressions ..* 」 in awk/sed/grep and ruby(fluentd)

I am conducting a text-based log analysis (fluentd), and I am considering using grep for the desk examination.Eventually, I checked the difference in the processing method when registering Fluentd.In ...


2 answers
107 views
0
How to use grep in pip

pip freeze results in grep==0.3.2appears.However, python-mpip freeze | grep package nameIf you actually try to use it like this, 'grep' is an internal or external command. Not recognized as an operati...

2 years ago

3 answers
76 views
0
Extracting Lines in a File on a Shell Script

There are two files: test1.txt (space separated), test2.txt, and Could you tell me the code for the shell script to generate a file (test3.txt) that extracts the test1.txt line containing the test2.tx...

2 years ago

2 answers
146 views
0
How to Compare Files with Commands and Extract Mismatched Records

[Contents] In the command, compare Files listing IDs with csv containing IDsI'd like to extract a record of IDs from csv that are not listed in the Files Enumerating IDs.[Example] Files enumerating ID...


1 answers
112 views
0
I want to grep within the range of changes in Rubymine.

I would like to grep to the extent that I have changed in the project managed by Git.You can specify a commit or branch.I wish I could do it with Rubymine, but in other ways. How are you guys doing it...

2 years ago

3 answers
104 views
0
I want awk etc to show all fields after a certain field

Sometimes there are multiple filename containing spaces in a DIR, such as PDF name, and you want to search by a file name containing a date or WORD and see the results later.ls-la-rw-rw-1 admin admini...

2 years ago

2 answers
112 views
0
How to Expand Variables When Running the grep Command on Python

In the code below, only the one in the test.txt from the array using grep is I'd like to print out , but I don't know if the grep output is stored well in the variable, but I get an error no matter ho...

2 years ago
- 1 - »

© 2024 OneMinuteCode. All rights reserved.