xargs is a command on Unix and most Unix-like operating systems used to build and execute command lines from standard input.

learn more… | top users | synonyms

3
votes
2answers
65 views

How to add header to huge amount of files (empty/non-empty)

I need to add header (single line) to huge (>10k) number of text files. Let as assume that the variable $HEADER does contain appropriate header. The command find -type f -name ...
2
votes
1answer
32 views

Running a command in multiple directories

I am running this command in one of my many subdirectories: ls *.rst -C1 -t | awk 'NR>1' | xargs rm Essentially, this lists all files that end with .rst and I sort them based on the time they ...
2
votes
1answer
46 views

GNU parallel not working at all

I have been trying to use GNU parallel for some time, but I have never been able to get it to function at all! For example, running (in a non-empty directory!): ls | parallel echo # ...
0
votes
1answer
17 views

xargs and argument position

I have a directory with a couple of PHP files in multiple levels. I want to execute the following command for all of these PHP files. php ../../i18n/add-textdomain.php -i bulk-delete file_name.php ...
2
votes
1answer
62 views

How to process only one column and convert unix time in text file in BASH

I have a text file with table like 367612510.243586 717.860170 367612512.493918 722.249134 367668441.429983 692.407935 367668479.810461 692.407935 367668482.618858 727.953771 367668515.150386 ...
1
vote
2answers
40 views

Pipes & xargs => top [closed]

I am trying to use pipes and xargs to start top with a particular pid, but I cannot get it to work and I don't know why: ps aux|grep ProgramName|awk '{print $2}'|head -n1|xargs top -pid I get the ...
1
vote
2answers
61 views

Running a command on each id in a text file

I have a text file with a list of id's like below and I need to run the below command on each of these ids,is there an easier way to do in awk? ssh -p 29418 company.com gerrit review --code-review 2 ...
0
votes
2answers
22 views

Quoted parameter passed to shell script from xargs call not receiving correctly

The following xargs call is failing for me and I can't for the life of me figure out why... param="pvr.ccz:--format cocos2d --disable-rotation --shape-padding 1 --border-padding 0 --opt PVRTC4 ...
0
votes
1answer
14 views

how can i make xarg execute two commands?

I tried this s3cmd ls s3://somebucket/data/ | awk '{print $4}' | xargs -I %s s3cmd -v -c s3.cfg cp %s 's3://anotherbucket/data/' && s3cmd -c s3.cfg rm %s -v it does not work, of ...
0
votes
3answers
55 views

How to control the placement of xargs parameters?

I have a Bash script that takes an input folder with source code and an output directory as arguments. I want to be able to compile the files in the source folder and then send them to an output ...
0
votes
1answer
41 views

Solaris unix, c-shell, redirecting xargs executed command output

Have no choice about the c-shell. It's what we use here. So I want to parse through current directory and all sub-directories looking for files of form *.utv and egrep each to look for a specific ...
1
vote
3answers
90 views

Is there a grep equivalent for find's -print0 and xargs's -0 switches?

I often want to write commands like this (in zsh, if it's relevant): find <somebasedirectory> | \ grep stringinfilenamesIwant | \ grep -v stringinfilesnamesIdont | \ xargs ...
0
votes
1answer
44 views

excluding .svn .git files from find+xargs+grep pipe

I have an Emacs function (fgf "thing") that creates a subprocess that looks like this: find . \( -type f -a \! -regex '\.(svn|git)' \) -print0 | xargs -0 grep -nH -e 'thing' Basically I don't want ...
2
votes
1answer
61 views

Curl and Url list

cat urllist.txt | xargs -P0 -n1 curl | grep "HREF=" > out.txt this works fine but it connects one url at the same time. how can i curl 100 urls at the same time?
0
votes
0answers
41 views

copy over 100 files at a time with xarg or script?

I have over 1.3M files in a dir and I need to move them from j:/hold to j:/hold2 (all while a java app 'watches' the dir for any files to drop in and process them) I cannot just 'rename' the dir ...
0
votes
2answers
56 views

Monitoring progress within xargs

Is there any way to track or monitor progress within xargs? I'm replacing a for loop with find … | xargs for performance (specifically to run tasks in parallel). I've read that parallel has a ...
0
votes
2answers
49 views

xargs to copy one file into several

I have a directory that has one file with information (call it masterfile.inc) and several files that are empty (call them file1.inc-file20.inc) I'm trying to formulate an xargs command that copies ...
0
votes
3answers
88 views

bash: xargs passing variable

How can a global script variable be passed to the command of xargs? I tried it this way: TEST=hallo2 echo "hallo" | xargs sh -c 'echo passed=$1 test=$TEST' sh Output: passed=hallo test= I know I ...
2
votes
3answers
122 views

How to sleep for 1 second between each xargs command?

For example, if I execute ps aux | awk '{print $1}' | xargs -I {} echo {} I want to let the shell sleep for 1 second between each echo. How can I change my shell command?
0
votes
1answer
37 views

grep some archived logs using find and xargs

I have a list of IP's in a csv file and I need to search for any encounters of this IP's in a whole bunch of archived logs but only for file in January. I first tried this: for i in `cat ...
0
votes
2answers
119 views

Passing commands to a subshell with xargs does not work inside an alias

I was trying to build a quick script to find all the git repos under a directory and sequentially "git pull" each one. This is what I found so far: find ~/ -name ".git" -type d | sed ...
0
votes
0answers
46 views

using xargs in an alias to remove svn unversioned files interactively?

I'm trying to create a bash alias to remove, interactively, all svn unversioned files. I've gotten as far as svn st | grep '^\?'| sed 's/^? //' to get a list of such files. Piping into ...
0
votes
2answers
48 views

sed not properly passing stdout to ls

I'm trying to edit a simple string in sed that I've been having issues with. Basically what I'm trying to do is grab my current working directory using pwd, pipe it to sed, edit the file path, then ...
0
votes
1answer
36 views

xargs with the -d flag, and using substitution, causes an extra “empty” item to be processed

Using the -d flag in xargs to specify a delimter seems to tack an newline after the last value. Either way, it causes the command to break when using substitution to stick the value into the middle of ...
0
votes
5answers
236 views

bash awk first 1st column and 3rd column with everything after

I am working on the following bash script: # contents of dbfake file 1 100% file 1 2 99% file name 2 3 100% file name 3 #!/bin/bash # cat out data cat dbfake | # select lines containing 100% grep ...
1
vote
1answer
61 views

Execute command with various variables in one line with xargs

To be quick, this is my command: echo "user1,user2,user3" | xargs -d, -L 1 usermod -g specialgroup I want to add multiple existing users to a single group in one single command line. But, the above ...
0
votes
2answers
136 views

How can i pass all arguments with xargs in middle of command in linux

I want to pass the all files as single argument on linux but i am not bale to do that. This is working ls | sort -n | xargs -i pdftk {} cat output combinewd2.pdf But this passes as single ...
0
votes
0answers
81 views

Memory problems with xargs and grep and pattern from file

Within a makefile I run the following command find SOURCE_DIR -name '*.gz' | xargs -P4 -L1 bash -c 'zcat $$1 | grep -F -f <(zcat patternfile.csv.gz) | gzip > TARGET_DIR/$${1##*/}' - ...
0
votes
4answers
97 views

how to ping each ip in a file?

I have a file named "ips" containing all ips I need to ping. In order to ping those IPs, I use the following code: cat ips|xargs ping -c 2 but the console show me the usage of ping, I don't know ...
1
vote
2answers
47 views

xargs inconsistent behavior and -n1 parameter

I have a shell script find . -name "*.java" -print0 | xargs -0 grep -Lz 'regular_expression' which outputs file names not matching the regexp in this way: file1.java file2.java ... The way I ...
-3
votes
1answer
59 views

I need to know what exactly this will do: (grep & xargs)

Here is the line: find /localdir/ | grep '[0-9']$ | xargs -i% cp % /tftpboot I specifically want to know what grep is looking for exactly here. Can anyone translate it for me please ? I am also ...
2
votes
1answer
113 views

Split a bash script with imagemagick instructions into smaller pieces?

I have this bash script, feeding drawing information into imagemagick, which starts like this: #!/bin/bash convert -size 2200x2200 xc:white \ -fill '#FFFEFF' -draw 'point 1112,1111' \ -fill ...
1
vote
2answers
45 views

how to process linux find command didn't has result

find . -name "*.pyc" -print0| xargs -0 rm i use this command delete python compiled file but if current directory didn't have any *.pyc file this cmd will not work print out the error with rm ...
1
vote
2answers
101 views

How to tell curl to NOT overwrite

I am using the following command: $ xargs -n 1 curl -o -O < ../completeresultlist.txt Where ../completeresultlist.txt is where my list of files I want to download resides. However, some of these ...
1
vote
2answers
128 views

Pipe to export command

Why does export fail when used as the last step in a command pipeline? echo FOO=bar | xargs export # => xargs: export: No such file or directory I can rewrite it this way to accomplish what I ...
2
votes
0answers
65 views

Downloading a list of files, incrementing filename with each iteration [closed]

I'm using this question to help me download a list of files into a directory. However, if I want to actually download them, I need to specify a filename to save as too. Here's what I have so far: $ ...
0
votes
1answer
27 views

Findind files modified during a specified month

I've build this little script for finding files which was modified in a specified month. My script worked fine for this last four years, but from a recent update, now with bash V4, this won't work ...
0
votes
1answer
101 views

UNIX: Difference xargs and exec

I am trying to search for the string "rGEO" in a directory by using the following commands: find . -name "*" -type f -print | xargs grep "rGEO" ...
0
votes
1answer
108 views

Deleting a lot of keys in Redis

Trying to do something like: # redis-cli keys "resque:lock:*" |xargs -0 redis-cli del xargs: argument line too long What's the best way to work around this?
0
votes
4answers
277 views

xargs' $1 conflicts with $1 in shell script

I have these lines in one shell script file foo.sh: ps ax | grep -E "bar" | grep -v "grep" | awk '{print $1}' | xargs kill -9 $1 when I execute the shell script with an arguments like this: sh ...
0
votes
2answers
65 views

How to collect all README files and rename them in a folder?

For example, I have these files: /Applications/Emacs.app/Contents/Resources/etc/images/custom/README /Applications/Emacs.app/Contents/Resources/etc/images/ezimage/README ...
1
vote
2answers
127 views

grep and ls: 'l' flag not supported for ls when used with xargs?

Why does ls not work when the -l flag is passed in combination with xargs and grep? $ ls -rt | xargs grep xyz works, but: $ ls -lrt | xargs grep xyz grep: invalid option -- '-' Usage: grep ...
2
votes
3answers
129 views

Pipe two filenames (with spaces) through xargs in one command

Often I find myself wanting to merge the two latest screenshots I take into one image. I want to use ImageMagick to, in one command line through xargs (?), to merge the two latest files sorted by ...
0
votes
1answer
99 views

How to show the hidden files and hide the shown files with ls?

To list files I use ls. I know how to list almost (-A) or all (-a) of them. But when I try to show the hidden files and hide the shown files I'm out of luck with: ls --hide='*' -A The behavior that ...
1
vote
2answers
132 views

Using find and exec to create directories and then work with relative path to that directory

I have a bunch of .emlx Apple Mail files in structured folders, which I would like to import into Apple Mail. I know I can do this manually, by renaming the folder to folder.mbox, and then placing the ...
2
votes
5answers
357 views

Using backticks or $() with xargs and sed or awk

Assuming I want to change some filenames that end with jpg.jpg to end only with .jpg (in bash), and I want to do it by piping the output of find to xargs: By using sed: find . -iname '*jpg.jpg' | ...
0
votes
4answers
128 views

Select files in a dir that have more than 'n' lines in shell script?

I am trying to select files that have more than 'n' number of lines in a shell script and move them to another directory. The following command works fine from the command line but not in ashell ...
0
votes
0answers
62 views

Calling xargs from PHP script

I've got a PHP script that creates backups of a database on my website. I have a cron job that calls the script daily and I keep 7 days of backups. Recently, I decided to archive old podcasts to ...
0
votes
2answers
226 views

Why ls command combined with xargs and cp move only 10 files?

I have a command that copies file from one dir to another FILE_COLLECTOR_PATH="/var/www/"; FILE_BACKUP_PATH='/home/' ls $FILE_COLLECTOR_PATH | head -${1} | xargs -i basename {} | xargs -t -i cp ...
1
vote
1answer
451 views

Linux/Cygwin recursively copy file change extension [closed]

I'm looking for a way to recursively find files with extension X (.js) and make a copy of the file in the same directory with extension Y (.ts). e.g. /foo/bar/foobar.js --> /foo/bar/foobar.js and ...

1 2 3 4 5