-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rudá Moura <[email protected]>
- Loading branch information
Showing
4 changed files
with
28 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2011-2013, Rudá Moura <[email protected]> | ||
Copyright (c) 2011-2016, Rudá Moura <[email protected]> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Poof: List or remove Mac OS X packages | ||
# Copyright (c) 2011-2013 Rudá Moura <[email protected]> | ||
# Poof: List and uninstall/remove OS X packages | ||
# Copyright (c) 2011-2016 Rudá Moura <[email protected]> | ||
# | ||
|
||
"""Poof is a command line utility to list or remove Mac OS X packages. | ||
"""Poof is a command line utility to list and uninstall/remove OS X packages. | ||
NO WARRANTY! | ||
*NO WARRANTY* DON'T BLAME ME if you destroy your installation! | ||
NEVER REMOVE com.apple.* packages unless you know what you are doing. | ||
DON'T BLAME ME if you destroy your Mac OS X installation, | ||
NEVER REMOVE com.apple.* packages unless you know what are you doing. | ||
How it works: | ||
It first removes all files and directories declared by the package and | ||
then forget the metadata (the receipt data). | ||
Usage: | ||
List packages (but ignore from Apple). | ||
List packages (but ignore all from Apple). | ||
$ ./poof.py | grep -v apple | ||
$ ./poof.py | grep -v com.apple.pkg | ||
com.accessagility.wifiscanner | ||
com.adobe.pkg.FlashPlayer | ||
com.amazon.Kindle | ||
|
@@ -32,7 +35,7 @@ | |
Remove FlashPlayer (com.adobe.pkg.FlashPlayer). | ||
$ sudo ./poof.py com.adobe.pkg.FlashPlayer | ||
(Some error messages regarding directory is not empty) | ||
... | ||
Forgot package 'com.adobe.pkg.FlashPlayer' on '/'. | ||
""" | ||
|
||
|