All checks were successful
Build documentation / build-and-deploy (push) Successful in 29s
9 lines
146 B
Bash
Executable File
9 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Requires sudo
|
|
# USAGE: ./aux/write_iso.sh /dev/sda
|
|
|
|
set -x
|
|
|
|
dd if=./mop3.iso of="$1" bs=4M status=progress conv=notrunc,sync && sync
|