A Unix shell command that breaks input into fields, which can be selected for output, based on a delimiter.
27
votes
10answers
43k views
Copy and paste content from one file to another file in VI
Hello I am working with two files, I need to copy a few lines from one file and paste into another file. I know how to copy (yy) and paste(p) in the same file. But that doesn't work for different ...
25
votes
6answers
25k 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 ...
20
votes
7answers
38k views
how to split a string in shell and get the last field
suppose I have the string "1:2:3:4:5" and I want to get its last field ("5" in this case). how do I do that using Bash? I tried cut, but I don't know how to specify the last field with -f.
17
votes
2answers
6k views
How to make the 'cut' command treat several sequential delimiters as one?
I'm trying to extract a certain (the fourth) field from the column-based, 'space'-adjusted text stream. I'm trying to use the cut command in the following manner: cat text.txt | cut -d " " -f 4. ...
16
votes
6answers
11k views
How do you parse a filename in bash?
I have a filename in a format like:
system-source-yyyymmdd.dat
I'd like to be able to parse out the different bits of the filename using the "-" as a delimiter.
15
votes
3answers
16k views
How do you pipe input through grep to another utility?
I am using 'tail -f' to follow a log file as it's updated:
tail -f logfile
I next pipe the output of that to grep to show only the lines containing a search term ("org.springframework" in this ...
14
votes
3answers
12k views
linux cut help - how to specify more spaces for the delimiter?
Is there any way to specify a field delimiter for more spaces with the cut command? (like " "+) ?
For example: In the following string, I like to reach value '3744', what field delimiter I should say?
...
13
votes
5answers
7k views
How can I find the minimum cut on a graph using a maximum flow algorithm?
I need to find the minimum cut on a graph. I've been reading about flow networks, but all I can find are maximum flow algorithms such as Ford-Fulkerson, push-relabel, etc. Given the max flow-min cut ...
9
votes
1answer
847 views
Cut function in R - exclusive or am I double counting?
Based off of a previous question I asked, which @Andrie answered, I have a question about the usage of the cut function and labels.
I'd like get summary statistics based on the range of number of ...
8
votes
3answers
1k views
How to get the cut-set using the Edmonds–Karp algorithm?
I implemented the Edmonds–Karp algorithm using the Pseudocode that I found in the Edmonds–Karp algorithm wiki page: http://en.wikipedia.org/wiki/Edmonds%E2%80%93Karp_algorithm
It works great, yet the ...
7
votes
9answers
2k views
Truncate stdin line length?
I've been parsing through some log files and I've found that some of the lines are too long to display on one line so Terminal.app kindly wraps them onto the next line. However, I've been looking for ...
6
votes
2answers
9k 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?
...
6
votes
1answer
983 views
Cut polygons using contour line beneath the polygon layers
I would like to cut a polygon layer, according to the elevation, into two parts (upper and lower part). The polygon might convex or concave, and the position to cut might vary from each other. The ...
6
votes
1answer
669 views
Android: How do I know how many text can fit in my textView (my page)?
I want to create a text reader, which will cut the text and put it in the TextView (represents my pages) and one after the other. These are contained in a ViewFlipper (represents my entire text), ...
5
votes
6answers
311 views
Unix bash cutting and grep
I have a text file called db.txt.
Some sample lines from the file goes as such:
Harry Potter and the Sorcerer's Stone:J.K. Rowling:21.95:100:200
Harry Potter and the Chamber of Secrets:J.K. ...
5
votes
3answers
3k views
Shell Script to download youtube files from playlist
I'm trying to write a bash script that will download all of the youtube videos from a playlist and save them to a specific file name based on the title of the youtube video itself. So far I have two ...
4
votes
5answers
188 views
PHP - How to append “…” to a string of varying length at a certain point? e.g. After 200 chars
i have a mysql database and a table full of information, specifically a column of product descriptions. This column is used in my scripts twice. Its max length is 1000 characters.
One of the uses for ...
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.
...
4
votes
1answer
409 views
How to cut brick using polygon?
I have a brick file of the bioclim variables, the brick was merged from four 30sec tile brick, so it is a little bit large. I would like to get the brick file of my research area by cutting it using a ...
4
votes
1answer
250 views
tail -f into grep into cut not working properly
i'm trying to build a shell script to monitor some log files.
I'm using a command like this:
tail -f /var/somelog | grep --line-buffered " some test and p l a c e h o l d e r" | cut -f 3,4,14 -d " "
...
3
votes
5answers
13k views
How to cut the last field from a shell string
How to cut the last field in this shell string
LINE="/string/to/cut.txt"
So that the string would look like this
LINE="/string/to/"
Thanks in advance!
3
votes
4answers
6k 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 ...
3
votes
4answers
4k views
Java float 123.129456 to 123.12 without rounding
How do you cut down float primitive in java to two decimal places, without using rounding?:
123.99999 to 123.99
-8.022222 to -8.02
There should be no rounding just cut of the decimal places and ...
3
votes
3answers
200 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 ...
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
...
3
votes
4answers
206 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 <- ...
3
votes
3answers
111 views
How do I determine the slowest component of my shell pipeline?
I have an extremely long and complicated shell pipeline set up to grab 2.2Gb of data and process it. It currently takes 45 minutes to process. The pipeline is a number of cut, grep, sort, uniq, grep ...
3
votes
3answers
2k views
Is there a Perl substitute for the cut and paste shell commands?
I saw once a quick and dirty Perl implementation for the cut and paste linux commands. It was something like
perl 'print "$F1"' filename
to substitute a cut -f1 filename command
Can someone tell me ...
3
votes
1answer
2k views
Use org.eclipse cut/copy/paste in custom RCP aplication
I am developing a RCP application and I need cut/copy/paste in this app. As there are already commands which are delivered by eclipse (org.eclipse.ui.edit.copy, ...) I want to use them (I already ...
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 ...
3
votes
3answers
995 views
cutting a string into several lines in bash
I want to take the path of the local directory and put each directory on the path in a different line. I've tried to do it using cut:
pwd | cut -f 1- -d\/ --output-delimiter=\n
but it doesn't change ...
3
votes
4answers
517 views
Unix cut: Print same Field twice
Say I have file - a.csv
ram,33,professional,doc
shaym,23,salaried,eng
Now I need this output (pls dont ask me why)
ram,doc,doc,
shayam,eng,eng,
I am using cut command
cut -d',' -f1,4,4 a.csv
...
3
votes
2answers
352 views
AppleScript: Cutting images in the half?
is it possible to cut an image in the half using AppleScript and save them seperately?
thanks in advance
3
votes
2answers
47 views
Finding query for which a prolog program gives incorrect result
This Prolog program defines the third argument to be the maximum value of the first two numeric arguments:
max(X, Y, X) :- X >= Y, !.
max(X, Y, Y).
I think that this program works just fine. ...
3
votes
4answers
239 views
Problem with algorithm to shorten sentences
I have a webpage which displays multiple textual entries which have no restriction on their length. They get automatically cut if they are too long to avoid going to a new line. This is the PHP ...
3
votes
2answers
124 views
How to determine the latest major and full kernel version string as compactly as possible
So what I'm intending to do here is to determine both the latest major and the full kernel version string as compactly as possible (without a zillion pipes to grep).
I'm already quite content with ...
3
votes
6answers
565 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
499 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. ...
3
votes
1answer
250 views
JQuery infinite slider - cut and paste method?
I am trying to create a slider that slides across the page. When the slider is finished scrolling I want to cut the :first element and append it after the :last. How would this be done.
3
votes
4answers
2k views
Unix uniq, sort & cut command remove duplicate lines
If we have the following result:
Operating System,50
Operating System,40
Operating System,30
Operating System,23
Data Structure,87
Data Structure,21
Data Structure,17
Data Structure,8
Data ...
3
votes
1answer
790 views
Putting the results of grep & cut in a variable in a bash script
I'm new to Stackoverflow and pretty new to bash-scripting as well, so please forgive me for asking such a dork question. I've really browsed trough a lot of answers in here but nothing seems to work ...
3
votes
1answer
186 views
jQuery slide slicing off the tops of images
For some reason, slide in Chrome and Safari is slicing off the tops of images on one slider on my site and not the other. The code is a bit hairy for each slider, so you can have a look at the problem ...
2
votes
5answers
117 views
perl - cutting many strings with given array of numbers
dear my fellow perl masters in the world~!
I need your help.
I have a string file A and a number file B like this:
File A:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
...
2
votes
6answers
449 views
Cut a picture with Javascript or CSS?
I have pictures of constant width (i.e. 100px) but with variable height (could be 200px, 130px, ... but height is always >= 100px).
I'm looking for CSS or Javacript code, that can cut the bottom ...
2
votes
3answers
2k views
Python Cut Example
I'm looking for a way in python to achieve similar functionality to the unix cut utility. I know I can make a system call and process my data that way but I'd like to make it a bit more "pythonic" ...
2
votes
2answers
63 views
extract a specific word in bash
I have some lines in below forms:
-rw-r--r-- sten/sefan anonymous 8593 2011-12-05 18:28 8M
-rw-r--r-- sten/sefan 8593 2011-12-05 18:28 8M
How can I get the 8593 one-liner?
The lines are retrieved ...
2
votes
4answers
160 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 ...
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 ...
2
votes
3answers
3k views
cut command newline
I have a file like this:
one
two
three
four
I would like use a for loop in a bash script in order to scan the file line for line. Previously I used cut but I was not able to give the cut command ...
2
votes
5answers
6k views
cutting from string in C#
My strings look like that: aaa/b/cc/dd/ee . I want to cut first part without a / . How can i do it? I have many strings and they don't have the same length. I tried to use Substring(), but what about ...
