Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---Prva---
- #!/bin/bash
- find $HOME -mtime -1 > modified
- ---Vtora---
- #!/bin/bash
- #mv $1/[a-z]*.txt $2/[a-z]*.txt.moved_txt
- files=`find $1/[a-z]*.txt`
- for file in $files
- do
- mv $file $2/$file.moved_txt
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement