Tagged Questions
2
votes
2answers
66 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 ...
1
vote
2answers
39 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
2answers
43 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
votes
2answers
42 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
79 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 ...
-1
votes
2answers
66 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?
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 ...
0
votes
2answers
193 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
3answers
82 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 ...
0
votes
1answer
57 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 ...
1
vote
3answers
253 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 ...
1
vote
2answers
172 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 ...
0
votes
6answers
354 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 ...
4
votes
1answer
257 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 " "
...
1
vote
4answers
121 views
cut or grep to catch particular pattern
i have rows like that
5.7015 40828240 +152 -> explode(string(1), string(21)) /f.inc:467
5.7020 40834040 +192 -> explode(string(1), string(21)) /f.inc:467
...
1
vote
5answers
965 views
cutting last n character in a string using shell script
How to remove all n characters from a particular string using shell scripts,
ssl01:49188,,,
ssl01:49188,
ssl01:49188,,,,,
ssl01:49188,ssl999999:49188,,,,,
ssl01:49188,abcf999:49188,,,,,
The output ...
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 ...
5
votes
6answers
313 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. ...
3
votes
3answers
203 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
82 views
setting bash variable from a file where the string contains an asterisk
I want to extract a couple of things from an ios mobileprovision file, one of them being The name of the profile stored within the file, usually something like this in the file:
...
2
votes
2answers
469 views
using cut command to remove multiple columns
given input
echo 1,2,3,4,5,6,7,8,9,...100
If I want to cut columns 5 I can do
cut -d, -f-4,6-
what if I want to cut multiple non consecutive columns like 5, 7,etc
is there a one liner?
2
votes
2answers
148 views
Cut and replace bash
I have to process a file with data organized like this
AAAAA:BB:CCC:EEEE:DDDD
FF:III:JJJ:KK:LLL
MMMM:NN:OOO:PP
etc
Columns can have different length but lines always have the same number of ...
0
votes
2answers
66 views
how can I automatically remove the file extension in a file name
I am trying to make a script in bash that requires the removal of the the file extension from a file name, like the following
original: something.zip
removed version: something
And I was thinking ...
1
vote
5answers
384 views
Bash Using Quotes in Grep/Cut Commands in Scripts
I have a line similar to this
grep -oP "data-context-item-title=.*.data-context-item-id" web.html | cut -d'"' -f2
I know this line correctly works since I used it on the terminal and it gave me the ...
0
votes
2answers
55 views
Take input via user in order to execute a last and cut command
I want to prompt a user to cut from a 'last' command along with what columns to cut. I also want to use 'tr' to fix all the difference in white spaces. This is the code I have:
echo -n "What rows and ...
1
vote
1answer
323 views
Save the multiline output of 'grep | cut' to a variable
I'm new here and I'll do my best to explain my problem :)
I want to write a backup script to save all lv's used by KVM.
OS: Ubuntu Server x64 12.04
Bash 4.2.24
XML file content:
<source ...
2
votes
2answers
178 views
Code for extracting from the right side with cut command?
There is a sample of using the cut command to extract parts of a string starting from the left. An example is given below.
$ echo "abc-def-ghi-jkl" | cut -d- -f-2
abc-def
How can the same code be ...
0
votes
1answer
240 views
bash input/output redirect doesn't work
Can anybody tell me what is wrong with the following bash code
for f in $FILES
do
cut -d, f1-7 < $f > $f.tmp
done
When I run in the loop
echo "cut -d, f1-7 < $f > $f.tmp"
I get the ...
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 ...
0
votes
1answer
279 views
How to use unix grep and the output together?
I am new to unix commands. I have a file named server.txt, which has 100 fields, the first line of the file is header.
I want to take a look at the fields at 99 and 100 only.
Field 99 is just some ...
1
vote
2answers
291 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 ...
3
votes
1answer
792 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 ...
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 ...
3
votes
6answers
566 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":
...
1
vote
2answers
5k views
bash script use cut command at variable and store result at another variable
##config file with ip adresses like 10.10.10.1:80
#!/bin/bash
file=config.txt
for line in `cat $file`
do
##this line is not correct, should strip :port and store to ip var
ip=$line|cut -d\: -f1
...
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 ...
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 ...
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 ...
0
votes
2answers
61 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%%%)
...
1
vote
2answers
2k views
shell cut command to remove characters
The current code below the grep & cut is outputting 51315123&category_id , I need to remove &category_id can cut be used to do that?
... | tr '?' '\n' | grep "^recipient_dvd_id=" | cut -d ...
0
votes
2answers
4k views
How to grep and cut at the same time
Having trouble with grepping and cutting at the same time
I have a file test.txt.
Inside the file is this syntax
File: blah.txt Location: /home/john/Documents/play/blah.txt
File: testing.txt Location ...
2
votes
1answer
543 views
Problems with space character in Bash cut command when using a different delimiter
I have set | to be the delimiter for a cut command, but space characters seem to still be interpreted as a delimiter too.
Here's my test script:
people[1]="Mr|Smith"
people[2]="Mrs|Jane Brown"
for ...
0
votes
2answers
1k views
Bash scripting: using sed and cut to output a specific format
I am working on a bash script using sed and cut that will take times input in various ways and output them in a specific format. Here is an example line:
timeinhour=$(cut -d" " -f2<<<"$line" ...
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 - ...
0
votes
2answers
393 views
How do I transfer wget output to a file or DB?
I'm trying to use a small script to download a field from multiple pages. For one thing, I'm only able to get it from one page..., but the real problem I'm having is that I don't know how to hand the ...
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. ...
3
votes
3answers
996 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 ...
