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
#!/bin/bash | |
#date: 28/06/2017, author: nbodev | |
#remove package from mac os | |
# tested on mac os Sierra | |
#steps | |
#pkgutil --pkgs # list all installed packages | |
#pkgutil --files the-package-name.pkg # list installed files for a given package | |
#pkgutil --pkg-info the-package-name.pkg # check the location of a given package | |
#cd / # assuming the package is rooted at /... |
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
import java.io.IOException; | |
import java.nio.file.FileSystems; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.PathMatcher; | |
import java.nio.file.Paths; | |
import java.nio.file.SimpleFileVisitor; | |
import java.nio.file.attribute.BasicFileAttributes; |