hdiutil: add page (#3389)

This commit is contained in:
Diogo Pinela
2019-10-12 15:17:22 +01:00
committed by Waldir Pimenta
parent df29c21ec9
commit 7e034ef54b

19
pages/osx/hdiutil.md Normal file
View File

@@ -0,0 +1,19 @@
# hdiutil
> Utility to create and manage disk images.
- Mount an image:
`hdiutil attach {{filename}}`
- Unmount an image:
`hdiutil detach /Volumes/{{volumename}}`
- List mounted images:
`hdiutil info`
- Create an ISO image from the contents of a directory:
`hdiutil makehybrid -o {{filename}} {{dirname}}`