Fulltext results:
- DynDNS Updates without a Client
- OpenSolaris Home Server, but a small bash script does the job as good as any other client. <code bas... s-update.sh> #! /bin/bash . ${HOME}/.dyndns.cfg DOMAINS=$(cat ${HOME}/.dyndns.domains) echo "$(date '+%Y-%m-%d %H:%M') $(basename $0)" for domain in ${DOMAINS}; do echo -n " ${domain
- Change Encoding with iconv
- ory ===== <code bash> for f in $(find . -type f) do iconv -f iso-8859-1 -t utf-8 -o ${f}_$$_TEMP ${f} \ && mv ${f}_$$_TEMP ${f} done </code> {{tag>sysadmin convert encoding shell