I provide you with 3 jq lib functions that will help you in converting between snake_case and CamelCase.
I want to change keys in my json from camelcase to snake_case.
#/bin/bash | |
# apt-get update && apt-get install cdparanoia lame | |
cdparanoia -B && \ | |
for file in *.wav; do lame -V0 "$file" "${file/%wav/mp3}"; done && \ | |
rm *.wav && \ | |
eject |
package main | |
import ( | |
"fmt" | |
"log" | |
"strconv" | |
"github.com/miekg/dns" | |
) |
notify: | |
if: always() | |
name: Notify | |
needs: | |
- job1 | |
- job2 | |
- job11 | |
- job3 | |
- job4 | |
runs-on: ubuntu-latest |
#!/bin/bash | |
BITLOCKER_PARTITION="${1}" | |
BITLOCKER_PASSWORD="${2}" | |
function usage() { | |
echo "$(basename ${0}) <partition> <password>" | |
echo "Unlocks and mounts a bitlocker partition as read-only" | |
} | |
if [ -z "${BITLOCKER_PARTITION}" ] |
echo "****************************************************" | |
echo "* *" | |
echo "* CONVERT BARE REPO TO NORMAL REPO *" | |
echo "* *" | |
echo "****************************************************" | |
echo " -> untar repo.tar.gz" | |
tar -zxf repo.tar.gz | |
for user in $(ls repositories/); do | |
for repo in $(ls repositories/$user/); do | |
pathRepo="repositories/$user/$repo/"; |
#!/bin/bash | |
for i in {1..10}; | |
do | |
openssl req -x509 -new -sha256 -nodes \ | |
-out "cert-$i.der" \ | |
-outform DER \ | |
-newkey rsa:2048 \ | |
-keyout "cert-$i.key" \ | |
-config <( |
[Unit] | |
Description=Scheduled Reboot | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/systemctl --force reboot |
### Keybase proof | |
I hereby claim: | |
* I am imzack on github. | |
* I am rezacks (https://keybase.io/rezacks) on keybase. | |
* I have a public key ASBX5LZtqJ8mpjwV-42bFRxfm8oTY24IdxhSWtoO0N2Fvwo | |
To claim this, I am signing this object: |
[ | |
{ | |
"id": "50c307d1.8b1638", | |
"type": "exec", | |
"z": "473cc561.67a87c", | |
"command": "python", | |
"addpay": true, | |
"append": "", | |
"useSpawn": "false", | |
"timer": "10", |