Last active
January 16, 2017 09:25
-
-
Save greymd/159c13f9c7c3f847eb43ce9aa72e73d0 to your computer and use it in GitHub Desktop.
Revisions
-
greymd revised this gist
Jan 16, 2017 . 1 changed file with 7 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,15 +10,16 @@ # $ wpbpaste | file - # /dev/stdin: JPEG image data, JFIF standard 1.01 # Set ID and PASSWORD **AS YOU LIKE**. MYID="your_id" PASSWD="your_password" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat | openssl aes-256-cbc -e -pass pass:$PASSWD) https://transfer.sh/$MYID); curl -s -X POST "https://cl1p.net/$MYID" --data "content=$TRANS_URL" > /dev/null } wpbpaste () { local TRANS_URL=$(curl -s "https://cl1p.net/$MYID" | xmllint --html --xpath '/html/body/div/div/textarea/text()' -) curl -so- "$TRANS_URL" | openssl aes-256-cbc -d -pass pass:$PASSWD } -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,12 +12,13 @@ # Set MYSTR as you like. MYSTR="myclip" PASSWD="hogehoge" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat | openssl aes-256-cbc -e -pass pass:$PASSWD) https://transfer.sh/$MYSTR); curl -s -X POST "https://cl1p.net/$MYSTR" --data "content=$TRANS_URL" > /dev/null } wpbpaste () { local TRANS_URL=$(curl -s "https://cl1p.net/$MYSTR" | xmllint --html --xpath '/html/body/div/div/textarea/text()' -) curl -so- "$TRANS_URL" | openssl aes-256-cbc -d -pass pass:$PASSWD } -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,7 @@ # $ wpbpaste | file - # /dev/stdin: JPEG image data, JFIF standard 1.01 # Set MYSTR as you like. MYSTR="myclip" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat) https://transfer.sh/$MYSTR); -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,15 @@ # Usage ## Example 1 (Text) # $ echo foobar | wpbcopy # $ wpbpaste # foobar ## Example 2 (Binary) # $ cat image.jpg| wpbcopy # $ wpbpaste | file - # /dev/stdin: JPEG image data, JFIF standard 1.01 MYSTR="myclip" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat) https://transfer.sh/$MYSTR); -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,8 @@ # Usage # $ echo foobar | wpbcopy # $ wpbpaste # foobar MYSTR="myclip" wpbcopy () { -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ # $ wpbpaste # ほげほげ MYSTR="myclip" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat) https://transfer.sh/$MYSTR); curl -s -X POST "https://cl1p.net/$MYSTR" --data "content=$TRANS_URL" > /dev/null -
greymd revised this gist
Jan 16, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,12 +3,13 @@ # $ wpbpaste # ほげほげ MYSTR="greymd" wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat) https://transfer.sh/$MYSTR); curl -s -X POST "https://cl1p.net/$MYSTR" --data "content=$TRANS_URL" > /dev/null } wpbpaste () { local TRANS_URL=$(curl -s "https://cl1p.net/$MYSTR" | xmllint --html --xpath '/html/body/div/div/textarea/text()' -) curl -so- "$TRANS_URL" } -
greymd created this gist
Jan 16, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # Usage # $ echo ほげほげ | wpbcopy # $ wpbpaste # ほげほげ wpbcopy () { local TRANS_URL=$(curl -so- --upload-file <(cat) https://transfer.sh/myclip); curl -s -X POST 'https://cl1p.net/myclip' --data "content=$TRANS_URL" -w "%{http_code}" > /dev/null } wpbpaste () { local TRANS_URL=$(curl -s 'https://cl1p.net/myclip' | xmllint --html --xpath '/html/body/div/div/textarea/text()' -) curl -so- "$TRANS_URL" }