Created
May 5, 2020 21:02
-
-
Save tlhakhan/a67d569a6b36e67128d0c85cdfee7bdc to your computer and use it in GitHub Desktop.
Build an empty iso file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
IMAGE=empty.iso | |
BUILD=/dev/null | |
mkisofs -r -V "Empty ISO" -J -l -o $IMAGE $BUILD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment