SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Edit Shell Path
If you need to add /usr/local/bin to your OS X path for custom applications you've built and installed:
Check what shell you are using:
echo $SHELLIf it's /bin/bash, create or modify ~/.profile, adding the new path:
cat << EOF >> ~/.profile
PATH=/usr/local/bin:\$PATH; export PATH
EOFIf it's /bin/tcsh:
cat << EOF >> ~/.cshrc
set path = ( /usr/local/bin \$path )
EOFOpen a new shell window and check the paths:
echo $PATHTechnology:
- Log in to post comments