7 lines
101 B
Plaintext
7 lines
101 B
Plaintext
|
#!/usr/bin/bash
|
||
|
|
||
|
iso=$1
|
||
|
drive=$2
|
||
|
|
||
|
dd bs=4M if=$iso of=$drive conv=fsync oflag=direct status=progress
|