Tagged Questions

0
votes
1answer
16 views

Scp locate’s output by Xargs

I want to make a list of files of locate's output. I want scp to take the list. I am not sure about the syntax. My attempt with pseudo-code locate labra | xargs scp {} masi@11.1 …
1
vote
5answers
72 views

linux shell: How to read command argument from a file?

I have process id in a file "pid" I'd like to kill it. Something like: kill -9 <read pid from file> I tried: kill -9 `more pid` but it does not work. I also tried xarg …
2
votes
6answers
137 views

Shell Scripting: Using bash with xargs

I'm trying to write a bash command that will delete all files matching a specific pattern - in this case, it's all of the old vmware log files that have built up. I've tried this …
2
votes
2answers
153 views

Unix - “xargs” - output “in the middle” (not at the end!)

Hello, example use of "xargs" application in Unix can be something like this: ls | xargs echo which is the same as (let's say I have "someFile" and "someDir/" in the working dir …
1
vote
1answer
45 views

Putting the data passed to xargs twice in one line

tmp-file contains: database_1 database_2 database_3 I want to run a command like "mysqldump DATABASE > database.sql && gzip database.sql" for each line in the above file. …
1
vote
2answers
137 views

Confused by output using xargs

I have these files in a directory: y y1 y2 y3 Running this command: ls y* | xargs -i basename {}|xargs -i sed "s/{}//g" produces this: 1 2 3 Can someone explain why?! I ex …
0
votes
1answer
85 views

To count a character in files by Find/Xargs/Sed

How can you count the number of the character < in your files? I am trying to count the number of the character "<" in my files, similarly as in Vim by %s/<//gn I run …
1
vote
5answers
189 views

cat/Xargs/command VS for/bash/command

The page 38 of the book Linux 101 Hacks suggests: cat url-list.txt | xargs wget –c I usually do: for i in `cat url-list.txt` do wget -c $i done Is there some thin …
1
vote
3answers
195 views

To understand xargs better

I want to understand the use of xargs man in Rampion's code: screen -t man /bin/sh -c 'xargs man || read' Thanks to Rampion: we do not need cat! Why do we need xargs in the com …
0
votes
2answers
120 views

To understand recursive grep in xargs

What is the practical difference between the following two commands? Command A find . -type f -print0 | xargs -0 grep -r masi Command B find . -type f -print0 | xargs -0 grep …
1
vote
4answers
624 views

Shell script to extract particular content using find, xargs, and grep

Hi everyone. Well i am new to linux shell and i can't understand any regexp :( Here is my question: I have a directory called /var/visitors and under this directory, i have direct …
1
vote
7answers
3k views

How can I use xargs to copy files that have spaces and quotes in their names?

I'm trying to copy a bunch of files below a directory and a number of the files have spaces and single-quotes in their names. When I try to string together find and grep with xarg …
1
vote
4answers
202 views

How can I use aliased commands with xargs?

I have the following alias gi grep -i and I want to look for foo case-insensitively in all the files that have the string bar in their name: find -name \*bar\* | xargs gi foo …
3
votes
6answers
982 views

Make xargs execute the command once for each line of input

How can I make xargs execute the command exactly once for each line of input given? It's default behavior is to chunk the lines and execute the command once, passing multiple lines …
0
votes
2answers
436 views

Using grep and xargs, avoiding ‘unterminated quote’ error

Hi, I'm getting frustrated enough that I figured it was time to ask a question. I'm trying to replace an email address across a website that is hard coded into 1000's of pages. …

1 2 next
15 30 50 per page