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 | |
# | |
# countdown - Display a text countdown for a given number of seconds. | |
# | |
# Chip Rosenthal | |
# [email protected] | |
USAGE="usage: $0 secs" | |
if [[ $# -ne 1 ]] ; then |
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 | |
# | |
# email-tunnel - create a tunnel for email service, e.g. to get POP/IMAP through outbound port filters | |
# | |
# Prerequisites: daemon, ssh | |
# | |
# Uses the LocalForward feature of ssh. | |
# | |
# You'll need an "email-tunnel" entry in your .ssh/config file. Something like: | |
# |
NewerOlder