Help for this page

Select Code to Download


  1. or download this
    find ~/MyPerl/dir* -name '*.output' -exec mv '{}' ~/MyPerl/result \;
    
    for n in `seq 1 50`; do mv ~/MyPerl/dir$n/*.output ~/MyPerl/result/; d
    +one
    
    for f in `find ~/MyPerl/dir* | grep 'output$'`; do mv $f ~/MyPerl/resu
    +lt/; done