forked from rmm5t/tilda-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh-init
executable file
·92 lines (71 loc) · 2.82 KB
/
ssh-init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env bash
#
# Copyright (c) 2006-2009 Ryan McGeary
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# --------------------------------------------------
#
# USAGE: ssh-init <ssh-args>
#
# Example: ssh-init [email protected]
# Example: ssh-init 2222 [email protected]
#
# --------------------------------------------------
#
# Push your public key to the remote server and append it to the
# authorized_keys file if it's not already there.
#
ssh_args=$*
if [ $# -gt 0 ]; then
ssh-copy-id ${ssh_args}
else
echo 'Remote server not specified. Quitting.'
exit 1
fi
# --------------------------------------------------
#
# Sync your .bashrc and .bash_profile file to the remote server, but only if
# they differ. Backups are created if necessary.
#
while [ $# -gt 1 ]; do
rsync_ssh_args="$rsync_ssh_args $1"
shift
done
rsync_ssh_host=$*
# echo 'Syncing ~/bin ...'
# rsync -abrL --exclude '*~' --exclude ".svn/" --exclude ".git/" --exclude "private/" -e "ssh ${rsync_ssh_args}" ~/bin ${rsync_ssh_host}:~/
echo 'Syncing ~/.bashrc ...'
rsync -abL -e "ssh ${rsync_ssh_args}" ~/.bashrc ${rsync_ssh_host}:~/
echo 'Syncing ~/.bash_profile ...'
rsync -abL -e "ssh ${rsync_ssh_args}" ~/.bash_profile ${rsync_ssh_host}:~/
echo 'Syncing ~/.bash_aliases ...'
rsync -abL -e "ssh ${rsync_ssh_args}" ~/.bash_aliases ${rsync_ssh_host}:~/
echo 'Syncing ~/.bash_powerline ...'
rsync -abL -e "ssh ${rsync_ssh_args}" ~/.bash_powerline ${rsync_ssh_host}:~/
echo 'Syncing ~/.tmux.conf ...'
rsync -abL -e "ssh ${rsync_ssh_args}" ~/.tmux.conf ${rsync_ssh_host}:~/
echo 'Touching ~/.bash_local ...'
ssh ${ssh_args} "if [ -f ~/.bash_env ]; then mv ~/.bash_env ~/.bash_local; fi"
ssh ${ssh_args} "touch ~/.bash_local"
echo
# --------------------------------------------------
echo 'Done.'
exit 0
# --------------------------------------------------