We Recommend

An Introduction to R An Introduction to R
This tutorial manual provides a comprehensive introduction to R, a software package for statistical computing and graphics. R supports a wide range of statistical techniques, and is easily extensible via user-defined functions written in its own language, or using dynamically loaded modules written in C, C++ or Fortran. One of R's strengths is the ease with which well-designed publication-quality plots can be produced.


Posted By

buscarini on 10/03/06


Tagged

Shell unix xargs


Versions (?)


Usar xargs para comandos que requieren más de 1 argumento


Published in: Other 


  1. En Linux:
  2. find . -type f -name "*.h" -print0 | xargs -0 --replace=% cp % result/include/
  3.  
  4.  
  5.  
  6. En otros Unix:
  7.  
  8. $ pwd
  9. /Users/taylor/Desktop/foo
  10. $ find . -type f -name "*mp3" -print0 | \
  11. xargs -0 -J% mv % /Users/taylor/Desktop/foo
  12. $

Report this snippet 

You need to login to post a comment.