mirror of
https://github.com/zdharma-continuum/zinit-configs.git
synced 2025-02-24 14:39:26 +01:00
5 lines
118 B
Bash
5 lines
118 B
Bash
# DESC: Converts file $1 (iso) to ${1:r}.dmg
|
|
|
|
hdiutil convert -format UDRW -o "${1%.iso}".dmg "${1}"
|
|
|
|
# vim:ft=zsh:et
|