1
0
Fork 0
mirror of https://github.com/zdharma-continuum/zinit-configs.git synced 2025-02-24 14:39:26 +01:00
zinit-configs/psprint/functions/x1iso2dmg
2019-06-27 12:47:09 +02:00

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