1
vote
2answers
36 views

Taking a Column of Output from comm Without Losing Blank Lines

I'm trying to assemble a list of software installations per user. I have the complete list of users in file1.txt, and the list of users with the software installed in file2.txt. I want to end up ...
0
votes
3answers
28 views

Get only files committed info in svn log -verbose

How to get only the files committed as the output from svn -verbose svn log -v . -r 101 ------------------------------------------------------------------------ r101 | username | 2013-05-10 ...
0
votes
2answers
45 views

I tried various cut commands but unable to get the output I desire

cat DecisionService.txt /MAGI/Household/MAGI_EDG_FLOW.erf;/Medicaid/MAGI_EDG_FLOW;4;4 /VCL/VCL_Ruleflow_1.erf;/VCL/VCL1_EBDC_FLOW;4;4 /VCL/VCL_Ruleflow_2.erf;/VCL/VCL2_EBDC_FLOW;4;4 I tried this: ...
0
votes
2answers
42 views

Awk/Cut variable denying further use of mutt?

So I am building a script to check for files with certain errors in a bunch of files, based on output from an SQL DB. The file with the error shall be sent to me via mail. The problem is that when I ...
0
votes
2answers
65 views

BASH: Using cut on space delimited file: Treating two spaces as one

I need to convert file full of lines like this: # 2007 4 29 10 1 17.98 blah other stuff into lines formatted like this 2007.04.29.10.01.17 The original line is space delimited, and when a ...
0
votes
4answers
57 views

shell command to truncate/cut a part of string

I have a file with the below contents. I got the command to print version number out of it. But I need to truncate the last part in the version file file.spec: Version: 3.12.0.2 Command used: ...
1
vote
3answers
49 views

how to get awk, cut, etc. to not peek for FS inside quoted strings

I have an input CSV file containing something like: SD-32MM-1001,"100.00",4/11/2012 SD-32MM-1001,"1,000.00",4/12/2012 I need to take out the formatting of numerical values for some other processing ...
0
votes
2answers
34 views

sed command to beautify output of an awk command

i have the following output from an awk command..i want to beautify output as follows..is there an sed command that will give me the expected output? CURRENT OUTPUT:- https://code-comp.com/308271 ...
0
votes
1answer
22 views

awk search command for case-insensitivy

I have the following awk commmand..i want to make "issue-Fixed" as case-insensitive,can anyone provide inputs on how this can be done,i looked at ...
1
vote
1answer
44 views

Parsing output of an ssh command using awk

I have an ssh command which gives the following output, I want the ssh command to be modified such that the url and jirano output comes side-by side if there is jirano, second change does not have ...
1
vote
4answers
52 views

selecting data from a big file

The following grep statement is working as expected. But it takes a lot of time if the file size is too big (40GB) grep '^INSERT' test.txt > new.txt 1) Is there any other way to quickly get the ...
2
votes
2answers
55 views

Get a list of people who are logged in

I am trying to diplay the firstname and lastname of all the user that a logged in by parsing the output of finger. This is what I have tried: finger | awk '{$1=$4=$5=$6=$7=$8=$9=$10=""; print}' | ...
0
votes
2answers
157 views

how to cut several lines from file bash unix

I have a text file: Hello 1 2 3 (unknown number of lines) Hello (unknown number of lines) Hello (unknow number of lines) Hello how to cut lines between two first "hello" and save it to a file? so ...
0
votes
1answer
52 views

Escape @ using awk

I have the following: ssh $DOMAIN -l root "grep "'$EMAIL@$DOMAIN'" /var/log/maillog | grep retr= | grep -v retr=0 | awk '{ print "'$11'" }' | cut -d, -f1 | cut -d= -f2 | awk '{ t += $1 } END { print ...
0
votes
2answers
61 views

How to display only the last field?

I used cut -d " " -f 8 and awk '{print $8}' But this assumes that the 8th field is the last one, which is not always true. How can I display the last field in a shell script?
-1
votes
4answers
82 views

Unix command to delete 1st,2nd and 5th character from each line of a file?

For example :let us consider my file contains 100 lines in which i need to delete 1st,2nd and 5th character from each line.
2
votes
3answers
156 views

sed/awk/cut/grep - Best way to extract string

I have a results.txt file that is structured in this format: Uncharted 3: Javithaxx l Rampant l Graveyard l Team Deathmatch HD (D1VpWBaxR8c) Matt Darey feat. Kate Louise Smith - See The Sun (Toby ...
1
vote
1answer
185 views

Using awk/cut/sed with lines containing different numbers of fields

I'm using the pinboard.in API to get a list of my current bookmarks. The results look like this: <post href="https://www.nocc.meezy.com/doc/view.cgi?id=715" time="2013-02-11T17:38:10Z" ...
0
votes
3answers
79 views

Printing only the first field in a string

I have a date as 12/12/2013 14:32 I want to convert it into only 12/12/2013. The string can be 1/1/2013 12:32 or 1/10/2013 23:41 I need only the date part.
0
votes
2answers
88 views

awk performance and CPU run time

I have an input file with millions of rows and thousands of columns/fields. Can anybody explain to me, why the two awk methods below, which yield the same output, differ so much in terms of CPU run ...
1
vote
3answers
102 views

Splitting data in unix

I have a DDL command with 300 plus fields and I need to separate the fields and datatypes separately and store them into an excel spreadsheet.Some of the data types are having spaces in between.Here ...
0
votes
2answers
56 views

awk capability cut capability

I am using the following ssh command to get a list of ids. Now I want to get only ids greater than a given number in the list of ids; let's say "231219" in this case. How can I incorporate that? I ...
0
votes
2answers
739 views

How to get first n characters in unix data file

I am trying to get the first 22 characters from a unix data file.Here is my data looks as below. First 12 characters is column 1 and next 10 characters is 2nd column. 000000000001199998000180000 ...
0
votes
6answers
317 views

bash method to remove last 4 columns from csv file

Is there a way to use bash to remove the last four columns for some input CSV file? The last four columns can have fields that vary in length from line to line so it is not sufficient to just delete a ...
1
vote
2answers
305 views

Cut lines of /etc/passwd of users of the same group

I want to cut the lines of /etc/passwd of users of the same group. If my group have the uid 1009 I want all the lines of /etc/passwd of this group user1:x:1001:1009::/home/user1:/bin/bash ...
3
votes
3answers
194 views

Can I change the order of the output fields from the Linux cut command?

I am using cut command in command line and seems I can't get the output I like. Do you have any idea why I am getting this? Is it something that I do wrong? This is the normal output and I would ...
4
votes
5answers
90 views

get the file name from the path

I have a file file.txt having the following structure:- ./a/b/c/sdsd.c ./sdf/sdf/wer/saf/poi.c ./asd/wer/asdf/kljl.c ./wer/asdfo/wer/asf/asdf/hj.c How can I get only the c file names from the path. ...
0
votes
6answers
67 views

Exclude e-mails which domain name match with the global one

The global domain are in "*@" option, when e-mail match with one of these global domains, I need to exclude them from the list. Example: WF,*@stackoverflow.com WF,*@superuser.com ...
0
votes
2answers
235 views

how to select specific rows and columns

I need to select for example: Column 2 of row 7. Column 3 of row 8. Columns 1 and 3 of row 11. of a specific file and place the result in another file. This is what I have tried so far: sed ...
2
votes
4answers
159 views

how can I split up this string

I am currently trying to sanitize some log files so they are in an easier format to read, and have been trying to use the gnu cut command, which works fairly well, although I cannot really think of a ...
0
votes
1answer
295 views

How to get the paragraph contain the key words in shell scripts?

I want to get the whole paragraph that contain the key words. For example, the following is the output of "ifconfig -a" bond0 Link encap:Ethernet HWaddr 00:11:3F:C1:47:98 inet6 ...
-2
votes
4answers
103 views

How to extract coloumn then make a sum and sort it?

I have problem extracting coloumns because not every coloumn has a row. Look at the picture: http://www.dodaj.rs/f/1F/Fw/1dAklQ4M/snap008.jpg Now I want to list coloumn for example: "Label" ...
2
votes
3answers
374 views

How to cut range of characters from multiple columns

I have a tab delimited file which looks like this: CHROM <TAB> POS <TAB> AD0062-C <TAB> AD0063-C <TAB> AD0065-C <TAB> AD0074-C 2L <TAB> 440 ...
2
votes
1answer
95 views

How would I print a whole column based upon string. (Random Column Number)

On day one I may receive large CSV output such as: this,is,a,test bob,is,your,uncle sound,one,"Zen proverb",clapping On day two I may receive output such as: test,this,is,a ...
3
votes
6answers
556 views

Extract specific strings from line in file and output to another file with modifications

New to linux and trying to escape doing this the hard way. I have a file ("output.txt") that contains the results of a 'find' command. Example first three lines from "output.txt": ...
3
votes
3answers
495 views

Print only fields of matched header starting after matched records

I'm trying to extract specific fields from my file. Basically, output fields only containing a matched expression, with output starting after the matched records. This is an example of my input. ...
1
vote
4answers
314 views

Need to extract middle hex portion from the tcpdump output

Here is a tcpdump hex output of a captured packet. Command used was .. $ tcpdump -X -s0 protochain <portno> 0x0000: 6000 0000 0080 3220 0000 0000 0000 0000 ................ 0x0040: 0000 ...
3
votes
4answers
205 views

Get the 4th Wednesday of each November in R

I have a time-indexed matrix (xts object) and I want only the fourth Wednesday of every November. require(quantmod) getSymbols("^GSPC", from="1900-01-01") #returns GSPC GSPC$WED <- ...
0
votes
2answers
60 views

Parsing and applying function on parsed values in bash scripting

I have the following in my script : function processurl { } some_text%%%url1%%%url2%%%url3%%% with number of urls varying between 0 to any finite number (in case of 0 the string is some_text%%%) ...
0
votes
3answers
777 views

How to get everything to the left from last delimiter in a string?

To cut last field in string I use: command: echo /dir1/dir2/dir3/file | awk -F "/" '{ print $NF; }' output: file How can I get everything to the left from the last delimiter in the ...
3
votes
4answers
5k views

how to subset a file - select a numbers of rows or columns

I would like to have your advice/help on how to subset a big file (millions of rows or lines). For example, (1) I have big file (millions of rows, tab-delimited). I want to a subset of this file ...
1
vote
4answers
1k views

Print Field 'N' to End of Line

I would like to have help or direction on a problem I have in awk. I have a tab-delimited file with more than 5 fields. I want to output the fields excluding the first 5 fields. Could you please ...
1
vote
1answer
59 views

Seperating a nested field into two new fields, maintaining order

I've been trying to break a sample file as below such that the third column becomes two parts while maintaining order within the file. 100 400 500.00APPLE 5.8 9.2 200 300 600.00DOG 5.3 9.1 ...
1
vote
3answers
5k views

How can I extract a substring from the results of a cut command in unix?

I have a file that is '|' delimited. One of the fields within the file is a time stamp. The field is in the following format: MM-dd-yyyy HH:mm:ss I'd like to be able to print to a file unique dates. I ...
2
votes
2answers
340 views

Strange problem with cut,colrm,awk and sed: fail to cut characters from a pipe stream

I have created a script to enumerate all files in a directory and below it. I wanted to add some progression feed-back by using pv, because I usually use it from the root directory. The problem is ...
2
votes
5answers
4k views

Unix - Need to cut a file which has multiple blanks as delimiter - awk or cut?

I need to get the records from a text file in Unix. The delimiter is multiple blanks. For example: 2U2133 1239 1290fsdsf 3234 From this, I need to extract 1239 3234 The delimiter for ...
3
votes
3answers
5k views

Parsing the first column of a csv file to a new file

Operating System: OSX Method: From the command line, so using sed, cut, gawk, although preferably no installing modules. Essentially I am trying to take the first column of a csv file and parse it ...
2
votes
4answers
5k views

linux ps aux command [closed]

How obtain the running process with absolute path name from ps command 13598 ? Ssl 0:00 /opt/something --run-id 2 -n /home/laks/f1 -l l.log I need the output as - /opt/something --run-id ...