5 lines
92 B
Bash
Executable file
5 lines
92 B
Bash
Executable file
#!/bin/sh
|
|
# Flashes USB devices
|
|
# Requires 'pv'
|
|
|
|
pv $1 > $2 && sync && echo "Done!" && sync
|