Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- file=`find ./ -iname '*.tgz'`
- for i in $file
- do
- tar -xvf $i
- done
- a=`find ./ -iname file_a_copiar`
- for i in $a
- do
- cp $a file_a_copiar.XXXX
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement