This file contains hidden or 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 | |
# | |
# to use with Postfix. | |
# Exim users, get out of here! Write your own scripts. | |
# | |
set -e | |
serviceIP="127.0.0.2" | |
servicePort=1051 |
This file contains hidden or 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/sh | |
# | |
# show manually installed packages under debian | |
# | |
aptHistory(){ | |
install_or_remove=$1 | |
for pkg in $(zgrep -hoE "apt(-get)? (-y )?$install_or_remove .*" /var/log/apt/history.log*gz);do | |
echo "$pkg" | |
done | sort|sort -u | grep -v '^-' |
This file contains hidden or 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
<?php /* | |
encode/decode Outlook thread index. | |
GUID must be 32 bytes long | |
forked from brettp/thread-index.php | |
*/ |
NewerOlder