7 lines
384 B
Bash
7 lines
384 B
Bash
#!/bin/bash
|
|
# I want to version-control my lists, but i don't want them to be visible in case I ever decide to publicize this repository.
|
|
# So.... I guess I'll just check in encrypted versions, lol.
|
|
|
|
openssl enc -d -aes-256-cbc -pbkdf2 -in linklist-videos.yaml.crypt -out linklist-videos.yaml
|
|
openssl enc -d -aes-256-cbc -pbkdf2 -in linklist-music.yaml.crypt -out linklist-music.yaml
|