Advertisement
Guest User

Untitled

a guest
Jul 14th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. #!/bin/bash
  2. # para alterar as permissões:
  3. # sudo chmod -R 777 /home......
  4. while :
  5. do
  6. # sleep 14400
  7. cd /home/fernando/Dropbox/backup
  8. t=$(date +%F-%H:%M:%S)
  9. mkdir $t
  10. # cd $t
  11. cd $(ls -Art | tail -n 1)
  12.  
  13. # cd ~/fernando/Dropbox
  14. # mkdir '%F_%H.%M.%S'
  15.  
  16. cp -r /home/fernando/.stalonetrayrc .
  17.  
  18. cp -r /home/fernando/.conky .
  19.  
  20. cp -r /home/fernando/.config/i3 .
  21.  
  22. cp -r /home/fernando/.config/lxpanel .
  23.  
  24. cp -r /home/fernando/.config/lxqt .
  25.  
  26. cp -r /home/fernando/.config/mate .
  27.  
  28. cp -r /home/fernando/.config/menus .
  29.  
  30. cp -r /home/fernando/.config/mate-session .
  31.  
  32. cp -r /home/fernando/.config/terminator .
  33.  
  34. cp -r /home/fernando/.config/compton.conf .
  35.  
  36. cp -r /home/fernando/.config/.composite_enabled .
  37.  
  38. cp -r /home/fernando/.config/.zshrc .
  39.  
  40. cp -r /home/fernando/.config/.zcompdump .
  41.  
  42. cp -r /usr/share/applications/Logout.desktop .
  43.  
  44. cp -r /home/fernando/Notebooks/Notes/MANUAL.txt .
  45.  
  46. cp -r /usr/share/applications .
  47.  
  48. sudo chmod -R 777 .
  49.  
  50. sleep 14400
  51. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement