mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-25 20:59:23 +01:00
Fix commit 04920736d9d931f63a11946bcae95341e5a83ab5
This commit is contained in:
parent
4377a3a494
commit
06242df743
14
bashrc
14
bashrc
@ -416,8 +416,7 @@ function mkcd() {
|
|||||||
if [[ $# -gt 1 ]]; then
|
if [[ $# -gt 1 ]]; then
|
||||||
echo 'Warning: All directories will be created, but will change to first specified directory.' 1>&2
|
echo 'Warning: All directories will be created, but will change to first specified directory.' 1>&2
|
||||||
fi
|
fi
|
||||||
mkdir -p "$*"
|
mkdir -p "$*" && cd "$1"
|
||||||
cd "$1"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function gribble-gpg-everify() {
|
function gribble-gpg-everify() {
|
||||||
@ -425,9 +424,14 @@ function gribble-gpg-everify() {
|
|||||||
# probably want to use gpg2 here.
|
# probably want to use gpg2 here.
|
||||||
local gpg=gpg2
|
local gpg=gpg2
|
||||||
|
|
||||||
read -r -i 'Enter Bitcoin OTC URL: ' REPLY
|
echo -n 'Enter Bitcoin OTC URL: '
|
||||||
echo -n ';;everify '
|
read REPLY
|
||||||
lynx -hiddenlinks=ignore -dump $REPLY | $gpg --decrypt
|
lynx -hiddenlinks=ignore -dump $REPLY > bitcoin_otc.txt.asc
|
||||||
|
$gpg --decrypt-file bitcoin_otc.txt.asc
|
||||||
|
echo -en '\e[1;32m;;everify '
|
||||||
|
cat bitcoin_otc.txt
|
||||||
|
echo -e '\e[0m'
|
||||||
|
rm -rf bitcoin_otc.txt bitcoin_otc.txt.asc
|
||||||
}
|
}
|
||||||
|
|
||||||
##### Tmux (example) 4G2W9C #####
|
##### Tmux (example) 4G2W9C #####
|
||||||
|
14
zshrc
14
zshrc
@ -361,8 +361,7 @@ function mkcd() {
|
|||||||
if [[ $# -gt 1 ]]; then
|
if [[ $# -gt 1 ]]; then
|
||||||
echo 'Warning: All directories will be created, but will change to first specified directory.' 1>&2
|
echo 'Warning: All directories will be created, but will change to first specified directory.' 1>&2
|
||||||
fi
|
fi
|
||||||
mkdir -p "$*"
|
mkdir -p "$*" && cd "$1"
|
||||||
cd "$1"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function gribble-gpg-everify() {
|
function gribble-gpg-everify() {
|
||||||
@ -370,9 +369,14 @@ function gribble-gpg-everify() {
|
|||||||
# probably want to use gpg2 here.
|
# probably want to use gpg2 here.
|
||||||
local gpg=gpg2
|
local gpg=gpg2
|
||||||
|
|
||||||
read -r -i 'Enter Bitcoin OTC URL: ' REPLY
|
echo -n 'Enter Bitcoin OTC URL: '
|
||||||
echo -n ';;everify '
|
read REPLY
|
||||||
lynx -hiddenlinks=ignore -dump $REPLY | $gpg --decrypt
|
lynx -hiddenlinks=ignore -dump $REPLY > bitcoin_otc.txt.asc
|
||||||
|
$gpg --decrypt-file bitcoin_otc.txt.asc
|
||||||
|
echo -en '\e[1;32m;;everify '
|
||||||
|
cat bitcoin_otc.txt
|
||||||
|
echo -e '\e[0m'
|
||||||
|
rm -rf bitcoin_otc.txt bitcoin_otc.txt.asc
|
||||||
}
|
}
|
||||||
|
|
||||||
##### Tmux (example) 4G2W9C #####
|
##### Tmux (example) 4G2W9C #####
|
||||||
|
Loading…
Reference in New Issue
Block a user