Fulltext results:
- DynDNS Updates without a Client
- n} - " curl --silent --show-error --insecure --user ${LOGIN} "${UPDATE_URL}?hostname=${domain}" done </code> First, the login credentials (the ''$LOGIN'' variable) and the server's URL (''$UPDATE_URL'') are read from the config file ''~/.dyndns.cfg''. Here an example config file: <file bash dyndns.cfg> LO
- exiftool
- ====== 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<CreateDate" *.jpg ===== Correct the Date of Photos =
- Compare directories
- ====== Compare directories ====== For each of the directories, generate a digest file: <code bash> find DIR -type f -ex... '' and the option ''-d'' of ''sort'', to get compareable results on different machines. After that, y
- Command Line Tools Used in My Scripts
- very of my systems. Basic tools (e.g. awk, find, grep, ps) which are always installed are not listed. ===== Audio/Video ===== * cdda2wav * cdrecord * cdrdao * [[http://dvdauthor.sourceforge
- Shell Script Variables
- er of ''$a'': <code bash> ${a: -1} </code> ===== Remove Slash from the End of a Variable ===== Remove a trailing slash from ''$a'': <code bash> a=${a%/}
- root login with bash
- h'' is much easier. Using this command, you can directly log in as ''root'' with a ''bash'' shell.
- Change Encoding with iconv
- o ''OUTPUT.txt''. ===== Convert All Files in a Directory ===== <code bash> for f in $(find . -type f