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