Fulltext results:
- DynDNS Updates without a Client
- ====== DynDNS Updates without a Client ====== My new hosting provide Strato offers DynDNS. I was sear... penSolaris Home Server, but a small bash script does the job as good as any other client. <code bash ... domains which should be updated. They must be whitespace separated, I recomment to put one domain per ... of my scripts collection, so you can find the latest version at http://bitbucket.org/andunix/scripts/
- exiftool
- ===== Rename Photos ===== Try it first with ''-testname'': exiftool -d %Y-%m-%d_%H%M%S%%-c.%%e "-testname<CreateDate" *.jpg Then rename the files: exiftool -d %Y-%m-%d_%H%M%S%%-c.%%e "-filename<Crea... To shift the photos 43 days, 14 hours and 55 minutes to the future: exiftool -AllDates+='0:0:43 14:
- Compare directories
- ====== Compare directories ====== For each of the directories, generate a digest file: <code bash> find DIR -type f -exec shasum {} + | LC_ALL=C sort -d -k 2 > sh... he option ''-d'' of ''sort'', to get compareable results on different machines. After that, you can d
- Change Encoding with iconv
- UT.txt'' from ''iso-8859-1'' to ''utf-8'' and writes it to ''OUTPUT.txt''. ===== Convert All Files in a Directory ===== <code bash> for f in $(find . -t
- root login with bash
- ample.com -t "su - root -c /bin/bash"' This enables me logging in with just: $ demo_root Passwor
- Shell Script Variables
- ====== Shell Script Variables ====== ===== Last Character ===== Get the last character of ''$a'': <c