4 lines
76 B
Bash
Executable file
4 lines
76 B
Bash
Executable file
#!/bin/bash
|
|
nbd=$1
|
|
umount /dev/nbd$nbd
|
|
qemu-nbd --disconnect /dev/nbd$nbd
|