You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/scripts/isosec2plain

17 lines
211 B
Bash

#!/usr/bin/bash
set -e
declare arg="$1"
[[ -z $arg ]] && read -r arg
year=${arg:0:4}
month=${arg:4:2}
day=${arg:6:2}
hour=${arg:8:2}
min=${arg:10:2}
sec=${arg:12:2}
echo "$year/$month/$day $hour:$min:$sec"