So I’ve started setting up some TextExpander stuff to automate more of my life.
Inspired by the latest podcast I decided to create a snippet to automate an email I send once per month to start learning to use the various features.
Since the email contains the full name of the previous month in my local language (Norwegian) this wasn’t supported directly. The suggested solution from Smile is to use Shell Script for this.
I created a Shell Script snippet which I nested into the main snippet - but it’s adding a line shift for some reason… am I missing some setting or is this a bug? Any workaround?
The Shell Script snippet is:
#!/bin/bash
LANG=no_NO.UTF-8
date -v1d -v-1m “+%B %Y”
The fact that I discovered Mac Power Users earlier this Summer and that Automators got launched now is going to cause havoc in my life. It’s just too much useful stuff being thrown around to not follow-up on - so need to up my Apple Script knowledge considerably, learn at least some basic Shell Script, and get to know a not so small set of automation Apps… at least it’s fun and full of small victories!