1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-14 03:15:42 +02:00

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}}`