On 2/5/21 4:52 PM, Christof Thalhofer wrote: > Attached is GAlarm.txt. Remove the first and the last line and then do: > > $ base64 -d GAlarm.txt > GAlarm.tar.gz As a one-liner: $ head -n -1 GAlarm.txt | tail -n +2 | base64 -d > GAlarm.tar.gz -- Lee