Advertisement
v1ral_ITS

DD Backup Entire DVD To A .iso File

Apr 21st, 2018
589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.79 KB | None | 0 0
  1. #!/bin/bash
  2. # ImPerial TeK Solutions (ITS)
  3. # Copyright (c) 2018 v1ral <ImPerialTeKSolutions@outlook.com>
  4.  
  5. S='sudo'
  6. read -p "What /dev USB Or CD/DVD Are We Making An Iso Image From?" DISK
  7. read -p "Title The iso.image We Are Making Now:" NAME
  8.  
  9. #########
  10. # START #
  11. #########
  12.  
  13. $S dd if=$DISK of=$NAME.iso bs=8M status=progress
  14. echo -e $gray"OPTIONS: \n1) Send Us Feedback \nOr Inquire About A Script Made For You! \n2) No Thanks, Im Done! "
  15. read nn
  16. case $nn in
  17.     1) read -p "Hit [E]nter & Copy Email, Hit [E]nter After To Bring Up Your Browser"; read -p "ImPerialTeKSolutions@outlook.com"; sleep 3; x-www-browser www.gmail.com;;
  18.     2) echo "$orange If You Ever Change Your Mind \nPlease Feel Free To Email Us Anytime @ \nImPerialTeKSolutions@outlook.com, THANKS! "
  19. esac
  20.  
  21. #######
  22. # END #
  23. #######
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement