An open API service indexing awesome lists of open source software.

https://github.com/uefi-code/fuckingpkg

Install Mac App without click its pkg
https://github.com/uefi-code/fuckingpkg

macos-app

Last synced: 7 months ago
JSON representation

Install Mac App without click its pkg

Awesome Lists containing this project

README

          

# FuckingPKG

U know, install a pkg need Admin privilege...And it may contains fucking scripts that polluting your Mac.

So, try NOT double-click a pkg. Expand it instead.
```bash
pkgutil --expand install.pkg install_pkg
cd install_pkg
cat Payload | cpio -idm
```

If cpio failed, try
```bash
gzip -dc Payload | cpio -idm
```

It should works for most App, except some one required ```root``` daemon.