xaizek / dit (License: GPLv3) (since 2018-12-07)
Command-line task keeper that remembers all old values and is meant to combine several orthogonal features to be rather flexible in managing items.
<root> / scripts / export-template.bash (a2795eef6ceda6f5582dd4fa9cfc1bc201a3b208) (612B) (mode 100755) [raw]
#!/bin/bash

# This script is invoked once for each item.
# Commented code shows how received data can be collected and accessed.
#
# Usage example:
# dit export ./export-template.bash

declare -A data

# Compose an associative array from key-value pairs.
for arg; do
    # echo "Arg: $arg"
    key="${arg%%=*}"
    value="${arg#*=}"
    # echo "Key: $key"
    # echo "Value: $value"

    data[$key]="$value"
done

# Visit each array entry.
for key in "${!data[@]}"; do
    :
    # echo "Key: $key"
    # echo "Value: ${data[$key]}"
done

# Display title or report its absence.
echo "${data[title]:-<no title>}"
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master