Help for this page

Select Code to Download


  1. or download this
    cd /your/old/dir/
    cp `grep -rl 'NNNN' *` /your/new/dir/
    
  2. or download this
    for file in `grep -rl 'NNNN' *` ; do cp $file dstdir/ ; done