Guest User

Untitled

a guest
Jul 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ $# -eq 0 ]
  4. then
  5. echo "Missing argument: device"
  6. exit 1
  7. fi
  8.  
  9. printf '\xAB' | dd of=$1 bs=1 seek=511 count=1 conv=notrunc
  10.  
  11. partprobe $1
  12.  
  13. exit 0
Add Comment
Please, Sign In to add comment