Add attribution to some shell scripts

This commit is contained in:
ViViDboarder 2017-07-11 11:02:31 -07:00
parent 67e5dd7444
commit ae71df8263
6 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
# Function used to take a github http pull URL and automatically convert it to an ssh url
if [[ "$1" == "" ]]; then

View File

@ -1,3 +1,6 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
# Function used to checkout a pull request into it's own branch
REMOTE=""

View File

@ -1,5 +1,6 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
# Reads hostname from arg1 and gets echos the tmux buffer over to to pbcopy
ssh $1 'tmux show-buffer' | pbcopy

View File

@ -1,5 +1,6 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
# Mimics pbcopy using the tmux buffer instead. To use, put this in your path as pbcopy
# This is useful for yanking to the cliboard buffer in Vim on a remote box

View File

@ -1,5 +1,6 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
# Mimics pbpaste using the tmux buffer instead. To use, put this in your path as pbpaste
# This is useful for putting from cliboard buffer in Vim on a remote box

View File

@ -1,3 +1,5 @@
#! /bin/bash
# Created by ViViDboarder. Please share with attribution
tmux new-session "tmux link-window -s $*"