Tagged Questions
0
votes
4answers
51 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 ...
-1
votes
2answers
41 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
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
3answers
53 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
vote
2answers
161 views
How to grep, then cut from a delimited column file?
I have a file with multiple rows, each row delimited with | into multiple columns.
I can grep for a certain row, and I can cut for a certain column, but I can't figure out how to do both.
grep ...
1
vote
3answers
92 views
How to cut characters only from lines beginning with x?
I'm trying to cut everything between the 2nd and 18th character using cut -c-2-18- filename. This cuts specified characters on every line but I'd like to cut it only from lines beginning with >.
1
vote
3answers
107 views
duplicating line with sed and cut command
I have a file like entries like this:
@HWI-ST750:151:C1C6AACXX:8:1101:10000:14114/1
AAACATACCATTGCATATTTCGTATAATTCGAATTTAAGCAAGTTGTATTGCCAACAGCTCAGATCAATTAAGAATCTTTTCAAATTTATCAATTTA
+/1
...
0
votes
2answers
788 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 ...
1
vote
2answers
307 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
197 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 ...
1
vote
2answers
520 views
cut from column X until the end of a tab delimited file
If I have a file with an unknown number of column but I know I want columns X til the end, is there an easy way to use cut for this?
Let us say X=5,
I used,
cut -f5- filename
but it did not work.
...
0
votes
2answers
238 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 ...
0
votes
3answers
342 views
Unix/Linux Shell Grep to cut
I have a file, say 'names' that looks like this
first middle last userid
Brian Duke Willy willybd
...
whenever I use the following
line=`grep "willybd" /dir/names`
name=`echo $line | cut ...
1
vote
2answers
286 views
cut -f 2- -d “ ”
I have the following script called often
cleanup.sh
#!/bin/bash
DEFAULT_LIMIT=10
INPUT=$1
PATTERN=$2
LIMIT=$3
if [ "$INPUT" == "" ] || [ "$PATTERN" == "" ]
then
echo "usage: $0 INPUT ...
-1
votes
5answers
428 views
How to find/cut for only the filename from an output of ls -lrt in perl
I want the file name from ls -lrt output, but I am unable to find a file name. I used the command below, but it doesn't work.
$cmd=' -rw-r--r-- 1 admin u19530 3506 Aug 7 03:34 ...
1
vote
6answers
1k views
How to Split a string and print all the substrings using cut
I have some comma separated strings and want to split them using cut command in bash:
This, is a, sample input.
This, is, another string, which could, appear, in my text, file.
I also want to print ...
2
votes
3answers
376 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 ...
1
vote
1answer
3k views
How to cut multiple columns from several files and print the ouput to different files
I am quite new to the Linux environment. I have several files and I only want to take specific columns from it. At the moment, I am using the following code:
$cut -f 1,2,5 AD0062-C.vcf > ...
2
votes
1answer
229 views
splitting a field into two using linux cut
I have several fields in my log file and I have been able to transform them to CSV with the following script.
#!/bin/bash
INPUT=/home/MSC11/khanm/wwwp11dorganiser.co.uk_log
...
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
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 ...
1
vote
2answers
2k views
linux command line: cut (with empty fields)
I have a file (input.txt) with columns of data separated by spaces. I want to get the 9th column of data and onwards.
Normally I would do:
cut -d " " -f 9- input.txt
However, in this file, ...
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?
...
0
votes
3answers
780 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 ...
0
votes
4answers
2k views
Split delimited file into smaller files by column
I'm familiar with the split command in linux. If I have a file that's 100 lines long,
split -l 5 myfile.txt
...will split myfile.txt into 20 files, each having 5 lines, and will write them to ...
2
votes
4answers
286 views
Rename subfolders
I try to fix my music folder, what itunes messed up.
So what I need is script to move files from:
music\Artist\Album name\Artist - title.mp3
to move files to
newmusic\Album name\Artist - ...
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 ...
0
votes
2answers
489 views
grep commad is not working properly
I am trying to extract the value from
in File.txt :
116206K->13056K(118080K), 0.0879950
secs][Tenured:274796K->68056K(274892K),
0.2713740 secs] 377579K->68056K(392972K), [Perm
...
2
votes
4answers
2k views
UNIX Parse HTML Page Display Contents of a Tag - One Liner?
I have an HTML file and I am interested in the data enclosed by <pre> </pre> tags. Is there a one-liner that can do achieve this?
Sample file :
<html>
<title>
Hello There!
...
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 ...

