A Unix shell command that breaks input into fields, which can be selected for output, based on a delimiter.

learn more… | top users | synonyms

1
vote
3answers
201 views

How to use cut command in bash to show all columns except those indicated?

I need to remove a column from a plain text file. I think this could be done using the inverse of the cut command. I mean, something like this: If this is my file: 01 Procedimiento_tal retiro ...
-2
votes
1answer
28 views

how to join two (or more) columns recorded in separate files?

I have this two files (file1.txt and file2.txt) my wanted output is output12.txt: file1.txt 1c 2c 1c 2c file2.txt 1c 2c 1c 2c output12.txt 1c 2c 1c 2c 1c 2c 1c 2c how i can do this ? sed ...
0
votes
4answers
46 views

Linux cut string

In Linux (Cento OS) I have a file that contains a set of additional information that I want to removed. I want to generate a new file with all characters until to the first |. The file has the ...
3
votes
2answers
46 views

Finding query for which a prolog program gives incorrect result

This Prolog program de fines the third argument to be the maximum value of the fi rst two numeric arguments: max(X, Y, X) :- X >= Y, !. max(X, Y, Y). I think that this program works just fine. ...
0
votes
2answers
22 views

Prolog cut operator behaviour

I have these clauses: a(1). a(2). b(a). c(A,B,C) :- a(A),d(B,C). c(A,B,C) :- b(A),d(B,C). d(B,C) :- a(B),!,a(C). d(B,_) :- b(B). When I run the query c(X,Y,Z) the answers are: X = 1, Y = 1, Z = 1 ...
-2
votes
3answers
51 views

Cut off last half of String

I need to cut off half of a user-entered string. I've tried this and it didn't work: Scanner sc = new Scanner(System.in); String nameOne = sc.nextLine(); chars[] oneChars = new ...
0
votes
1answer
43 views

How to pass array of arguments in shell script?

Right now i a have a working script to pass 2 arguments to a shell script. The script basically takes a ticket# and svn URL as arguments on command line and gives an output of all the revisions that ...
0
votes
0answers
15 views

Cut 4Bit from a 52Bit “Bytestring” in Phython

I've a 52 bit long "bytestring" descibed in this thread: Decoding Bytestring to Floats in Python now i want to cut off 4 bit from it so i can convert it back to a 6f with struct. Anyone any Idea how ...
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 ...
6
votes
2answers
8k views

xcode cut last characters from string

im workin on a xcode programm and need to cut the last 5 characters from a string.... i wont find it so i try to ask it her.... does anybody know how to cut the last 5 characters from a NSString? ...
0
votes
1answer
49 views

Cut string into parts of 2 charactered string and then to hex format (char * to unsigned char) in C

I need some help in cutting a string into a pair of characters and then converting it to HEX format. eg. char *ADDRESS = "0011AABB"; I want the above address to be split "00", "11", "AA" and "BB" ...
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 ...
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 ...
-1
votes
2answers
40 views

Cutting the column including size

I want to cut the column which include the size of files . I use ls -l to view info about files in current localization . I save info about file in txt file ls -l > info.txt , and now I want to cut ...
0
votes
2answers
66 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
1answer
64 views

Using cut into a shell script with variables

I am using cut to eliminate last two characters of a file: cut -c1-40 <inputfile >outfile Before, I have used wc to know the number of characters in the file: wc -c inputfile Now I would ...
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: ...
0
votes
0answers
42 views

Linux Command - using pipe between cut and tee

I want to make this command working but it stoped until cut finish working so no output in file3.txt proz -v --no-curses ...
1
vote
4answers
119 views

PHP how to cut text at comma in string

I am looking for a way to cut my strings at comma location. $string1 = 'Something, Other, Display, This'; $string2 = 'Something, Display, This'; $string3 = 'Something, Something, Something, Display, ...
0
votes
1answer
49 views

Prolog cut behaviour doesn't make sense to me

I've come across very strange behaviour (to me) regarding a particular cut. From what I understood, once the execution passes a cut, it cannot backtrack back above it. But that is exactly what this ...
1
vote
4answers
72 views

Shell script cut the beginning and the end of a file

So I have a file and I'd like cut the first 33 lines and the last 6 lines of it. What I am trying to do is get the whole file in a cat command (cat file) and then use the "head" and "tail" commands to ...
-1
votes
1answer
36 views

Randomly Select A File in folder & Move To Another Folder

I need to select a file from a directory and move to another directory. In order to do that I need to select a file randomly. I need to select a random file (any ext can be) but I dont know how to ...
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 ...
0
votes
0answers
18 views

Apple Compressor quit unexpectedly error

I got this error and any clues will be appreciated. Thanks Process: Compressor [535] Path: /Applications/Compressor.app/Contents/MacOS/Compressor Identifier: ...
0
votes
3answers
37 views

Cut NSString from space to end

I have NSString: sessid=os3vainreuru2hank3; __ubic1=MzcxMzjMDYuNjk0NDA1Mzc%3D; auto_login=123; sid=kep8efpo7; last_user=123; I need get just: __ubic1=MzcxMzjMDYuNjk0NDA1Mzc%3D; ...
3
votes
4answers
1k views

Unix join on more than two files

I have three files, each with an ID and a value. sdt5z@fir-s:~/test$ ls a.txt b.txt c.txt sdt5z@fir-s:~/test$ cat a.txt id1 1 id2 2 id3 3 sdt5z@fir-s:~/test$ cat b.txt id1 4 id2 5 id3 6 ...
-1
votes
2answers
62 views

GREP - What language is Linux / Unix utilities written in? [closed]

I was curious as to which language was utilities built into the Linux kernel was written in such as grep, cut, awk, find etc. Are these compiled and can not be cat'ed and viewed?
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 ...
0
votes
1answer
48 views

Parsing PSCustomObject in PowerShell, Eventlogs

So I am in need of some assistance. I got put on a project, involving writing a powershell script. And I need to be able to get the most recent SuccessAudit from the security log in a Windows 7 ...
1
vote
1answer
58 views

Cut function not working in r

I'm trying to group all dates houses in San Francisco were sold by year. I'm using the following code geo_big$month <- as.Date(paste0(strftime(geo_big$date, format = "%Y-%m"), "-01")) ...
-1
votes
1answer
13 views

how to use cut in order to get a part of a synthèse [closed]

I would like to cut a part of line. but i don't know what Regular expression to use in order to get the expression. Each line is written like this: az19.az19.az19.az19, i would like juste the second ...
0
votes
2answers
39 views

sorting files on bash

I have a bunch of files and would like to sort them according to their date represented in their file name as "2013-03-29_13-56-30". I am using bash. ...
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
49 views

How to determine the latest stable TuxOnIce version as compactly as possible

So what I'm intending to do here is to determine the latest stable version of TuxOnIce from http://tuxonice.net/downloads/all/ (currently tuxonice-for-linux-3.8.0-2013-02-24.patch.bz2). What ...
1
vote
2answers
66 views

how to prevent no in prolog?

Prolog, recursive function: i want it to print the C with each element of the list for example: C=30 and [H|T]= [-9,-10,-30] myfunc(C,[H|T]):- (\+([H|T]=[])), write(C), write(' with '), ...
25
votes
5answers
24k views

Limit text length to n lines using CSS

Is it possible to limit a text length to "n" lines using CSS (or cut it when overflows vertically). text-overflow: ellipsis; only works for 1 line text. original text: Ultrices natoque mus ...
0
votes
1answer
252 views

How to use MS-DOS Commands to cut paper using ESC/POS commands?

I have a simple requirement of printing text files from Windows (MS-Dos). Let's assume that my normal text file resides on "C:\Temp" folder. On the other hand, I have a EPSON TM88V receipt printer. I ...
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
126 views

Error using t.test() in R - not enough 'y' observations

I got this error for my code Error in t.test.default(dat$Value, x[[i]][[2]]) : not enough 'y' observations I think the reason I got this error is because I'm doing a t.test for data that only ...
0
votes
3answers
76 views

Using bash ps and cut together

I need to extract PID, UID and command fields from 'ps' and I have tried it like this: ps -L u n | cut -f 1,2,13 For some reason, this behaves as there is no cut command whatsoever. It just returns ...
-2
votes
1answer
132 views

Bin Packing Optimization Best Fit

I have this Bin Packing code: Public Class Cortar Private _Cortes() As Integer Public BarrasCortes()() As Integer Private _TamanhoBarra As Integer = 100 Public Property ...
0
votes
1answer
35 views

Accessing data from output R program

I have an output generated by the cuts functions which is the one below...lets call this ouput 'data'. cuts: [20,25) Time Kilometres 21 20 7.3 22 21 8.4 23 22 9.5 24 ...
0
votes
3answers
83 views

Cut Function in R program

Time Velocity 0 0 1.5 1.21 3 1.26 4.5 1.31 6 1.36 7.5 1.41 9 1.46 10.5 1.51 12 1.56 13 1.61 14 1.66 15 1.71 16 1.76 17 1.81 18 1.86 19 1.91 20 1.96 21 2.01 22.5 2.06 24 ...
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

Like Box Height Being Cut

Why is the like box bottom being cut when I set a custom height? It just cuts the faces and its lower part isn't shown. How can i fix it? Thanks
-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.

1 2 3 4 5 6