Tagged Questions
xargs is a command on Unix and most Unix-like operating systems used to build and execute command lines from standard input.
24
votes
9answers
24k 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 xargs, I get the ...
20
votes
3answers
3k views
How to use > in an xargs command?
I want to find a bash command that will let me grep every file in a directory and write the output of that grep to a separate file. My guess would have been to do something like this
ls -1 | xargs ...
20
votes
7answers
6k 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 to each instance.
...
15
votes
4answers
3k views
xargs doesn't recognize bash aliases
I'm trying to run the following command:
find . -iname '.#*' -print0 | xargs -0 -L 1 foobar
where "foobar" is an alias or function defined in my .bashrc file (in my case, it's a function that takes ...
8
votes
3answers
157 views
Joining concurrent Python Output
I'm using something like this:
find folder/ | xargs -n1 -P10 ./logger.py > collab
Inside logger.py I am processing the files out outputting reformatted lines. So collab should look like
...
6
votes
4answers
799 views
When should xargs be preferred over while-read loops?
xargs is widely used in shell scripting; it is usually easy to recast these uses in bash using while read -r; do ... done or while read -ar; do ... done loops.
When should xargs be preferred, and ...
6
votes
6answers
1k views
run the output of a script as a standalone bash command
suppose you have a perl script "foobar.pl" that prints the following to stdout
date -R
and you want to run whatever that perl script outputs as a standalone bash command (don't worry about security ...
4
votes
3answers
64 views
Run 4 concurrent instances of a python script on a folder of data files
We have a folder with 50 datafiles (next-gen DNA sequences) that need to be converted by running a python script on each one. The script takes 5 hours per file and it is single threaded and is ...
4
votes
5answers
189 views
looking for better solutions awk or perl: avoiding piping xargs etc
I had to parse files in which are listed the eigenvectors of a square matrix matrix in a seven columns file format, into a square matrix in which each eigenvector is a column of the matrix
...
4
votes
3answers
262 views
xargs to execute a string - what am I doing wrong?
I'm trying to rename all files in current directory such that upper case name is converted to lower. I'm trying to do it like this:
ls -1|gawk '{print "`mv "$0" "tolower($0)"`"}'|xargs -i -t eval {}
...
3
votes
1answer
81 views
Why does “locate filename | xargs vim” cause strange terminal behaviour?
When I do "locate 50local.policy | xargs vim", I get the error "Vim: Warnung: Die Eingabe kommt nicht von einem Terminal" (translation: Vim: Warning: The input does not come from a terminal).
I can ...
3
votes
2answers
315 views
xargs with multiple commands as arguments
cat a.txt | xargs -I % echo %
In the example above xargs takes 'echo %' as the command argument. But in some cases, I need multiple commands to process instead of one, for example:
cat a.txt | ...
3
votes
1answer
103 views
How to efficiently delete a long list/array of files and dirs in perl
This is how I currently delete files and directories recursively
foreach my $row(keys %$rows)
{
my $md5 = $rows->{$row}->{'md5'};
my $path = "/some/path/jpg/".substr( $md5, 0, 3 ...
3
votes
2answers
366 views
Change sed line separator to NUL to act as “xargs -0” prefilter?
I'm running a command line like this:
filename_listing_command | xargs -0 action_command
Where filename_listing_command uses null bytes to separate the files -- this is what xargs -0 wants to ...
3
votes
3answers
1k views
Shell Scripting: Using xargs to execute parallel instances of a shell function
I'm trying to use xargs in a shell script to run parallel instances of a function I've defined in the same script. The function times the fetching of a page, and so it's important that the pages are ...
3
votes
8answers
909 views
How to delete many number of 0 byte files in linux?
I've a directory with many number of 0 byte files in it. I can't even see the files when i use the ls command. I'm using a small script to delete these files but sometimes that does not even delete ...
3
votes
2answers
537 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.
I've got as far as ...
2
votes
6answers
88 views
xargs and find, rm complaining about \n (newline) in filename
I am trying to delete the oldest file in a tree with a script in Debian.
find /home/backups -type f \( -name \*.tgz -o -name \*.gz \) -print0 | xargs -0 ls -t | tail -1 | xargs -0 rm
But I am ...
2
votes
4answers
95 views
Use regular expressions and inverse matching, and pipe it to another command
The thing is, I have a custom bash script that makes specific actions over the specified folder, with the syntax being:
myscript $1 $2 $3
Where $1 is the name of the folder and $2, $3 other ...
2
votes
3answers
145 views
Bash Shell awk/xargs magic
I'm trying to learn a little awk foo. I have a CSV where each line is of the format partial_file_name,file_path. My goal is to find the files (based on partial name) and move them to their respective ...
2
votes
3answers
57 views
how to check version by using xargs command in bash?
Please consider the following scenario:
$ find / -type f -name httpd
/opt/httpd.bin/httpd
/etc/rc.d/init.d/httpd
/usr/sbin/httpd
......
I'd like to check each and everyone of the results using the ...
2
votes
3answers
122 views
xargs jar tvf - does not work
Objective: to list files in all jars.
This works:
for f in `find . -name "*.jar"`; do jar tvf $f; done
This works too:
find . -name "*.jar" -exec jar tvf {} \;
This does not (it does not print ...
2
votes
2answers
50 views
Why does xargs -L yield the right format, while xargs -n doesn't?
Consider the following:
$ echo index.html* | xargs -L 1 ls -l
-rw-r--r-- 1 zeki zeki 17198 2011-05-03 23:18 index.html
-rw-r--r-- 1 zeki zeki 17198 2011-05-03 23:20 index.html.1
-rw-r--r-- 1 zeki ...
2
votes
2answers
896 views
Using grep to search for hex strings in a file
I have been trying all day to get this to work.
Does anyone know how to get grep, or something of the like, to retrieve offsets of hex strings in a file?
I have a bunch of hexdumps that I need to ...
2
votes
3answers
194 views
how to output file names surrounded with quotes in SINGLE line?
I would like to output the list of items in a folder in the folowing way:
"filename1" "filename2" "file name with spaces" "foldername" "folder name with spaces"
In other words, item names must be ...
2
votes
3answers
230 views
Is it possible to distribute STDIN over parallel processes?
Given the following example input on STDIN:
foo
bar bar
baz
===
qux
bla
===
def
zzz yyy
Is it possible to split it on the delimiter (in this case '===') and feed it over stdin to a command running ...
2
votes
1answer
87 views
Is it possible to get the segment number in an xargs invocation
Xargs can be used to cut up the contents of standard input into manageable pieces and invoke a command on each such piece. But is it possible to know which piece it is ? To give an example:
seq 1 10 ...
2
votes
5answers
282 views
Tarballing without git metadata
My source tree contains several directories which are using git source control and I need to tarball the whole tree excluding any references to the git metadata or custom log files.
I thought I'd ...
2
votes
3answers
408 views
Best output format for Xargs
I'm writing a simple program to run through a bunch of files in various directories on my system. It basically involves opening them up and checking for valid XML. One of the options of this program ...
2
votes
1answer
776 views
What is the powershell equivalent to this bash command?
I'm trying to create a cli command to have TFS check out all files that have a particular string in them. I primarily use cygwin but the tf command has trouble resolving the path when run within the ...
2
votes
4answers
445 views
Sending the command(s) spawned by xargs to background
I want to know how I can send the command(s) spawned by xargs to background.
For example, consider
find . -type f -mtime +7 | tee compressedP.list | xargs compress
I tried
find . -type f -mtime ...
2
votes
5answers
824 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 xargs but can't get my ...
2
votes
6answers
2k 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 command:
find . ...
2
votes
3answers
627 views
Unix - “xargs” - output “in the middle” (not at the end!)
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):
echo someFile someDir
...
2
votes
7answers
842 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 thing, other than ...
2
votes
3answers
821 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 command?
I understand ...
2
votes
5answers
2k views
How can I use aliased commands with xargs?
I have the following alias in my .aliases:
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
...
1
vote
3answers
32 views
Using grep with sed and writing a new file based on the results
I'm very new to some of the command line utilities and have been looking for a while for a command that would accomplish my goal.
The goal is to find files that contain a string of text, replace it ...
1
vote
3answers
48 views
xargs: variable substitution after redirection
I'm trying to find all text files which have the encoding iso-8859-1 and convert these to UTF-8. My attempt so far is:
find . -name '*.txt' | xargs grep 'iso-8859-1' | cut -d ':' -f1 |
xargs iconv ...
1
vote
3answers
69 views
Run a bash command in parallel with xargs
I hope someone can help me with this simple problem. I want to run this command in parallel
windmill chrome test=./test http://www.google.ch
I was playing around with xargs and looked at the ...
1
vote
0answers
74 views
How to automate definition of .htaccess redirects based on content
I am using
grep -HEri "Title\:(content)" ./www.livesite.com/ > Livesite.txt
and
grep -HEri "Title\:(content)" ./www.devsite.com/ > Devsite.txt
to find pairs of paths which have matching ...
1
vote
2answers
40 views
Ignore empty result for xargs
Consider this command:
ls /mydir/*.txt | xargs chown root
The intention is to change owners of all text files in mydir to root
The issue is that if there are no .txt files in mydir then xargs ...
1
vote
2answers
92 views
Awk counting occurences strange behaviour
I need to count the number of occurences of elements of the second column of a large number of files. The script I'm using is this:
{
el[$2]++
}
END {
for (i in el) {
print i, el[i] ...
1
vote
5answers
276 views
How to execute multiple commands after xargs -0?
find . -name "filename including space" -print0 | xargs -0 ls -aldF > log.txt
find . -name "filename including space" -print0 | xargs -0 rm -rdf
Is it possible to combine these two commands into ...
1
vote
2answers
78 views
Using -0 with xargs
I am trying to give an input to xargs that is NUL separated. To this effect I have this:
$ echo -n abc$'\000'def$'\000' | xargs -0 -L 1
I get
abcdef
I wonder why doesn't it print o/p as
abc
def
...
1
vote
4answers
88 views
Command composition in bash
So I have the equivalent of a list of files being output by another command, and it looks something like this:
http://somewhere.com/foo1.xml.gz
http://somewhere.com/foo2.xml.gz
...
I need to run ...
1
vote
1answer
73 views
Run expand on find results
I'm trying to run the expand shell command on all files found by a find command. I've tried -exec and xargs but both failed. Can anyone explain me why? I'm on a mac for the record.
find . -name ...
1
vote
3answers
104 views
Extract arguments from stdout and pipe
I was trying to execute a script n times with a different file as argument each time using this:
ls /user/local/*.log | xargs script.pl
(script.pl accepts file name as argument)
But the script is ...
1
vote
1answer
73 views
Interactive search and replace from shell
Search and replace over multiple files is difficult in my editor.
There are plenty of tricks that can be done with find, xargs and sed/awk incluing search-and replace in multiple files.
But somehow I ...
1
vote
3answers
206 views
can xargs separate parameters?
echo "'param 1' 'param 2'" | xargs -n2 -I@ echo [@] [@]
This command outputs:
[param 1 param 2] [param 1 param 2]
However, I would like it to output:
[param 1] [param 2]
Is there a way ...