summaryrefslogtreecommitdiff
path: root/personal/cv/add-personal-info.sh
diff options
context:
space:
mode:
Diffstat (limited to 'personal/cv/add-personal-info.sh')
-rwxr-xr-xpersonal/cv/add-personal-info.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/personal/cv/add-personal-info.sh b/personal/cv/add-personal-info.sh
deleted file mode 100755
index 2e9ea8b..0000000
--- a/personal/cv/add-personal-info.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-set -eu
-
-input=$1; output=$2
-cp ${input} ${output}
-
-. personal-info
-
-fullname=$(getent passwd $(whoami) | cut -d: -f5 | cut -d, -f1)
-sed -i s/INSERT-FULLNAME-HERE/"${fullname}"/ ${output}
-
-# On the one hand, anyone can compute my age from my birth date. On
-# the other hand, wasting reader brain cycles on this computation
-# sounds kind of rude. On the gripping hand, having to bump my age
-# manually every year would be silly. Clearly the way forward is to
-# summon the powers of bash, date, bc and sed to save us the trouble.
-
-birthstamp=$(date -d "${birthday}" +%s)
-now=$(date +%s)
-age=$(bc <<< "(${now}-${birthstamp})/(3600*24*365.25)")
-sed -i s/INSERT-BIRTHDATE-HERE/"${birthday} (${age})"/ ${output}
-
-sed -i s/INSERT-LOCATION-HERE/"${location}"/ ${output}
-
-sed -i s/INSERT-PHONE-HERE/"${phone_number}"/ ${output}
-
-# Set by .profile and/or .xsessionrc.
-sed -i s/INSERT-MAIL-HERE/${EMAIL}/ ${output}