This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #################### | |
| # CLI cheatsheet # | |
| #################### | |
| # cheatsheet directory location: | |
| CHEATDIR=~/.cheatsheet | |
| # Use 'vicheat' to edit the cheatsheet | |
| alias vicheat='vim $CHEATDIR/command_cheatsheet' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python | |
| import csv | |
| import fire | |
| import json | |
| import pyjq | |
| """CSV TO JSON CLI | |
| Usage: | |
| python csv_to_json.py convert --csv_file="file.csv" --json_file="file.json" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Copyright 2016-2017 Martin Goellnitz | |
| # | |
| # update gitlab api | |
| # https://gist.github.com/dubiouscript/5553dce89497ffd9805dd0de16503e8d | |
| # -dscript- | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by |
OlderNewer