Skip to content

Instantly share code, notes, and snippets.

View linosteenkamp's full-sized avatar

Lino Steenkamp linosteenkamp

  • Cape Town South Africa
View GitHub Profile
@linosteenkamp
linosteenkamp / yubikey-gpg-ssh-git.md
Last active October 4, 2023 06:32 — forked from djsplice/yubikey-gpg-ssh-git.md
Yubikey - PGP - SSH - Git Signing
@linosteenkamp
linosteenkamp / csv2json.sh
Last active April 11, 2021 16:51 — forked from DecisionNerd/csv2json.sh
CSV to JSON converter using BASH. Original script from http://blog.secaserver.com/2013/12/convert-csv-json-bash/
#!/bin/bash
# CSV to JSON converter using BASH
# original script from https://gist.github.com/dsliberty/3de707bc656cf757a0cb
# Usage ./csv2json.sh input.csv > output.json
shopt -s extglob
input="${1:-/dev/stdin}"
SEP=","