Mercurial > index.cgi > dotfiles
annotate .bash_aliases @ 193:5d0e1adee7e0
Modifying cert alias for different key
author | Steve Huston <huston@astro.princeton.edu> |
---|---|
date | Mon, 21 Sep 2020 15:25:58 -0400 |
parents | 2dc3fbf65094 |
children | bb1c927125a5 |
rev | line source |
---|---|
19
f65964738bab
Added Id tag to files, and svn propset svn:keywords as appropriate
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
15
diff
changeset
|
1 # $Id$ |
f65964738bab
Added Id tag to files, and svn propset svn:keywords as appropriate
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
15
diff
changeset
|
2 |
f65964738bab
Added Id tag to files, and svn propset svn:keywords as appropriate
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
15
diff
changeset
|
3 # Aliases are read from this file; no real reason to separate them out except |
f65964738bab
Added Id tag to files, and svn propset svn:keywords as appropriate
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
15
diff
changeset
|
4 # for readability. |
f65964738bab
Added Id tag to files, and svn propset svn:keywords as appropriate
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
15
diff
changeset
|
5 |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
6 # Some settings which are architecture dependent |
15
fe83d9892ee3
Replaced tests with a 'case' in .bash_aliases
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
13
diff
changeset
|
7 case `uname` in |
30
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
8 Darwin) |
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
9 # DARWIN is used for the SSHFS mounts below |
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
10 DARWIN="yes" |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
11 |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
12 # The 'stat' and 'date' commands are here since the syntax of the commands |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
13 # is different between Linux and Mac OS X. If this is run elsewhere, the |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
14 # eval will be false and the test not done below, so it's safe to not |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
15 # bother checking for zero-length variables on the test - it just won't |
82
0b67280c980c
Reword comment (no more svn)
Steve Huston <huston@srhuston.net>
parents:
75
diff
changeset
|
16 # run the hg incoming, so you won't be prompted if there's newer files |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
17 # available in your repository. These are safe to export since they're |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
18 # the commands to be evaulated, not the output - you're storing how to get |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
19 # the answer, not the answer itself. |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
20 |
41
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
21 # Also note, the full paths are stored since GNU coreutils might be |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
22 # installed; while that would tend to make things "easier" since the GNU |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
23 # one is the same as the Linux ones below, it can't be guaranteed. |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
24 # Instead of checking for the presence of /opt/local/bin/ls (or gls) it's |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
25 # easier to point directly to the one you know *is* installed. |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
26 |
41
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
27 DFSTAT="/usr/bin/stat -f %m -t %s $HOME/.dotfilets" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
28 MDATE="/bin/date -v -1m +%s" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
29 TDSTAT="/usr/bin/stat -f %m -t %s $HOME/.todo" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
30 HDATE="/bin/date -v -1H +%s" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
31 |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
32 alias ls='/bin/ls -FG' |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
33 |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
34 VNCVIEWER="open vnc://" |
30
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
35 ;; |
8
aa5e55aa62ef
Moved specific section to top of .bash_aliases, so other bits can be set based
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
3
diff
changeset
|
36 |
30
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
37 Linux) |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
38 # See above for a description of these four |
41
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
39 DFSTAT="/usr/bin/stat -c %Y $HOME/.dotfilets" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
40 MDATE="/bin/date -d \"1 month ago\" +%s" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
41 TDSTAT="/usr/bin/stat -c %Y $HOME/.todo" |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
42 HDATE="/bin/date -d \"1 hour ago\" +%s" |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
43 |
41
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
44 alias ls='/bin/ls --color=auto -F' |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
45 |
2bea356b1032
* Added default screenrc from Linux (and the Screen installation) to .screenrc
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
40
diff
changeset
|
46 VNCVIEWER="vncviewer Shared=1 Fullcolor=1 " |
30
ca6c77fe843b
* Whitespace (ugh)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
26
diff
changeset
|
47 ;; |
15
fe83d9892ee3
Replaced tests with a 'case' in .bash_aliases
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
13
diff
changeset
|
48 esac |
8
aa5e55aa62ef
Moved specific section to top of .bash_aliases, so other bits can be set based
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
3
diff
changeset
|
49 |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
50 # Export some of those above for the benefit of future shells |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
51 export DFSTAT MDATE TDSTAT HDATE |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
52 |
1
7e33b3191cf7
Merged in settings from home, and at the same time edited some of the
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
0
diff
changeset
|
53 # SSH aliases |
177
ce4f783c13d8
csesbh -> csesbh2 for aliases too
Steve Huston <huston@astro.princeton.edu>
parents:
175
diff
changeset
|
54 alias bh='ssh csesbh2.princeton.edu' |
2
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
55 alias dh='ssh srhuston.net' |
0 | 56 alias j='ssh joshua.srhuston.net' |
26
e14a0b4fab30
* Rename private keys in ~/.ssh/ to <name>.pvt so the keys alias can just add
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
25
diff
changeset
|
57 alias keys='ssh-add $HOME/.ssh/*.pvt' |
1
7e33b3191cf7
Merged in settings from home, and at the same time edited some of the
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
0
diff
changeset
|
58 alias r='ssh -l root' |
192
2dc3fbf65094
New aliases for "forcing" connections via ssh
Steve Huston <huston@astro.princeton.edu>
parents:
177
diff
changeset
|
59 alias rf='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o GlobalKnownHostsFile=/dev/null -l root' |
177
ce4f783c13d8
csesbh -> csesbh2 for aliases too
Steve Huston <huston@astro.princeton.edu>
parents:
175
diff
changeset
|
60 alias rbh='ssh -t csesbh2.princeton.edu screen -raAx csesbh2' |
65 | 61 alias rj='ssh -t joshua.srhuston.net screen -raAx' |
62 alias rx='ssh -t xanadu.astro.princeton.edu screen -raAx' | |
1
7e33b3191cf7
Merged in settings from home, and at the same time edited some of the
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
0
diff
changeset
|
63 alias roc='ssh zenoss@rocinante' |
2
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
64 alias s=ssh |
192
2dc3fbf65094
New aliases for "forcing" connections via ssh
Steve Huston <huston@astro.princeton.edu>
parents:
177
diff
changeset
|
65 alias sf='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o GlobalKnownHostsFile=/dev/null' |
60
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
66 t() { |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
67 T_HOST=xanadu.astro.princeton.edu |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
68 if [ -n "$2" ] ; then |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
69 T_HOST=$2 |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
70 fi |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
71 ssh -t $T_HOST "ssh $1" |
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
72 } |
65 | 73 alias x='ssh xanadu.astro.princeton.edu' |
74 | |
167
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
75 # SSH key signing with Vault for administration |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
76 cert() { |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
77 export VAULT_ADDR='https://ajax.rc.princeton.edu:8200' |
193
5d0e1adee7e0
Modifying cert alias for different key
Steve Huston <huston@astro.princeton.edu>
parents:
192
diff
changeset
|
78 ssh-add -d $HOME/.ssh/rc_vault_key-cert.pub > /dev/null 2>&1 |
167
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
79 if vault login -method=radius username=vi-srh; then |
193
5d0e1adee7e0
Modifying cert alias for different key
Steve Huston <huston@astro.princeton.edu>
parents:
192
diff
changeset
|
80 vault write -field=signed_key ssh-client-signer/sign/root public_key=@$HOME/.ssh/rc_vault_key.pub > $HOME/.ssh/rc_vault_key-cert.pub |
5d0e1adee7e0
Modifying cert alias for different key
Steve Huston <huston@astro.princeton.edu>
parents:
192
diff
changeset
|
81 ssh-add $HOME/.ssh/rc_vault_key |
167
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
82 else |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
83 echo Failed to login to vault, aborting |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
84 fi |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
85 } |
88ed01a1094f
SSH Certificate signing
Steve Huston <huston@astro.princeton.edu>
parents:
165
diff
changeset
|
86 |
165
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
87 # Proxying/tunneling - predominantly for my Mac laptop |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
88 proxy() { |
177
ce4f783c13d8
csesbh -> csesbh2 for aliases too
Steve Huston <huston@astro.princeton.edu>
parents:
175
diff
changeset
|
89 PROXY_HOST=${PROXY_HOST:-csesbh2.princeton.edu} |
175
76f201ff5abc
Start of changing proxying, possibly more to come later
Steve Huston <huston@astro.princeton.edu>
parents:
173
diff
changeset
|
90 PROXY_PORT=${PROXY_PORT:-8888} |
165
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
91 ssh -D $PROXY_PORT -f -C -q $PROXY_HOST 'sleep 15' |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
92 /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \ |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
93 --proxy-server="socks5://127.0.0.1:$PROXY_PORT" \ |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
94 --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE localhost" \ |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
95 --user-data-dir="/Users/huston/Library/Application Support/Google/Chrome/ProxiedProfile" & |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
96 } |
ab0fb2057b88
Proxy function for starting a proxy server & Chrome
Steve Huston <huston@astro.princeton.edu>
parents:
164
diff
changeset
|
97 |
12
08bf77c6174f
Added bynarr alias (rdesktop)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
10
diff
changeset
|
98 # Remote desktop/VNC |
155
5ab127dd2d89
Fixing up aliases for VNC connections
Steve Huston <huston@astro.princeton.edu>
parents:
154
diff
changeset
|
99 eval "alias milton='ssh -L9930:milton:5900 -f joshua.srhuston.net \"sleep 5\"; ${VNCVIEWER}localhost:9930 &'" |
5ab127dd2d89
Fixing up aliases for VNC connections
Steve Huston <huston@astro.princeton.edu>
parents:
154
diff
changeset
|
100 # Xanadu VMs |
121 | 101 eval "alias xvm='ssh -L9909:localhost:5909 -f xanadu.astro.princeton.edu \"sleep 300\"; ${VNCVIEWER}localhost:9909 &'" |
155
5ab127dd2d89
Fixing up aliases for VNC connections
Steve Huston <huston@astro.princeton.edu>
parents:
154
diff
changeset
|
102 eval "alias cygnus='ssh -L9910:localhost:5910 -f xanadu.astro.princeton.edu \"sleep 300\"; ${VNCVIEWER}localhost:9910 &'" |
5ab127dd2d89
Fixing up aliases for VNC connections
Steve Huston <huston@astro.princeton.edu>
parents:
154
diff
changeset
|
103 eval "alias syrinx='ssh -L9911:localhost:5911 -f xanadu.astro.princeton.edu \"sleep 300\"; ${VNCVIEWER}localhost:9911 &'" |
5ab127dd2d89
Fixing up aliases for VNC connections
Steve Huston <huston@astro.princeton.edu>
parents:
154
diff
changeset
|
104 eval "alias lyra='ssh -L9912:localhost:5912 -f xanadu.astro.princeton.edu \"sleep 300\"; ${VNCVIEWER}localhost:9912 &'" |
12
08bf77c6174f
Added bynarr alias (rdesktop)
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
10
diff
changeset
|
105 |
1
7e33b3191cf7
Merged in settings from home, and at the same time edited some of the
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
0
diff
changeset
|
106 # Programs |
3
072b183989e0
Merged in changes for the Mac, including the beginnings of platform
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
2
diff
changeset
|
107 alias atari='atari800 -height 800 -width 600' |
2
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
108 alias base64='openssl enc -a' |
26
e14a0b4fab30
* Rename private keys in ~/.ssh/ to <name>.pvt so the keys alias can just add
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
25
diff
changeset
|
109 alias irssi-test='irssi --home=$HOME/irssi-test/' |
51
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
110 alias pine='alpine' |
2
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
111 alias ret='screen -raAx' |
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
112 alias rot13="tr 'a-zA-Z' 'n-za-mN-ZA-M'" |
91
9d5fcbb36232
Reordering some alises for completeness
Steve Huston <huston@astro.princeton.edu>
parents:
90
diff
changeset
|
113 alias tops='unset STY; screen -c .screenrc.pbstops -S pbstop' |
160
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
114 tt () { |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
115 OPTS="-G" |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
116 if [ -e ${HOME}/.tt/${1}.tin ] ; then |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
117 OPTS="${OPTS} ${HOME}/.tt/${1}.tin" |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
118 shift |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
119 fi |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
120 tt++ ${OPTS} $@ |
fd42244e9413
Adding 'tt' alias, commenting out some services on joshua
Steve Huston <huston@srhuston.net>
parents:
156
diff
changeset
|
121 } |
2
2b4dcc885071
Alphabetized aliases for easier sorting
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
1
diff
changeset
|
122 alias vi='vim' |
0 | 123 |
1
7e33b3191cf7
Merged in settings from home, and at the same time edited some of the
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
0
diff
changeset
|
124 # SSHFS mounts |
8
aa5e55aa62ef
Moved specific section to top of .bash_aliases, so other bits can be set based
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
3
diff
changeset
|
125 # The $DARWIN check fills in a nice volname if this is a Mac |
26
e14a0b4fab30
* Rename private keys in ~/.ssh/ to <name>.pvt so the keys alias can just add
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
25
diff
changeset
|
126 alias junkpile="sshfs -oreconnect${DARWIN:+,volname=Junkpile} srhuston.net:junkpile $HOME/junkpile" |
91
9d5fcbb36232
Reordering some alises for completeness
Steve Huston <huston@astro.princeton.edu>
parents:
90
diff
changeset
|
127 alias sdh="sshfs -oreconnect${DARWIN:+,volname=srhuston.net} srhuston.net: $HOME/srhuston.net" |
26
e14a0b4fab30
* Rename private keys in ~/.ssh/ to <name>.pvt so the keys alias can just add
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
25
diff
changeset
|
128 alias sj="sshfs -oreconnect${DARWIN:+,volname=Joshua} joshua.srhuston.net: $HOME/joshua" |
e14a0b4fab30
* Rename private keys in ~/.ssh/ to <name>.pvt so the keys alias can just add
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
25
diff
changeset
|
129 alias sx="sshfs -oreconnect${DARWIN:+,volname=Xanadu} xanadu.astro.princeton.edu: $HOME/xanadu" |
107
b955aa106b9a
Added 'vw' alias for sshfs
Steve Huston <huston@astro.princeton.edu>
parents:
102
diff
changeset
|
130 alias vw="sshfs -oreconnect${DARWIN:+,volname=VW} vw.math.princeton.edu: $HOME/vw" |
173 | 131 alias tmu="sshfs -oreconnect${DARWIN:+,volname=tomenet-user} joshua.srhuston.net:Installs/tomenet/lib/user $HOME/Installs/tomenet/lib/user" |
13
dacbbae5965c
Added Ruby setup variables
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
12
diff
changeset
|
132 |
51
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
133 # LDAP/host tools |
156
5dfc68e01309
New ldm/lds, and a quick way to know when is now
Steve Huston <huston@astro.princeton.edu>
parents:
155
diff
changeset
|
134 alias ldm="ldapmodify -Q -Y GSSAPI -c" |
51
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
135 alias ldsloop='while true; do read; clear; lds "$REPLY"; done' |
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
136 alias hostmaster='ssh -x -a huston@arizona.princeton.edu /usr/oit/bin/hostinfo' |
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
137 |
90
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
138 lds () { |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
139 QUERY="$1" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
140 shift |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
141 OPTS="" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
142 [[ "$1" =~ ^- ]] && { |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
143 OPTS="$1" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
144 shift |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
145 } |
156
5dfc68e01309
New ldm/lds, and a quick way to know when is now
Steve Huston <huston@astro.princeton.edu>
parents:
155
diff
changeset
|
146 ldapsearch -Q -Y GSSAPI -LLL $OPTS "($QUERY)" $@ |
90
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
147 } |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
148 |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
149 ldsauth () { |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
150 QUERY="$1" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
151 shift |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
152 OPTS="" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
153 [[ "$1" =~ ^- ]] && { |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
154 OPTS="$1" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
155 shift |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
156 } |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
157 ldapsearch -LLL -Z -W -D cn=DrAdmin,dc=astro,dc=princeton,dc=edu $OPTS -x "($QUERY)" $@ |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
158 } |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
159 |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
160 ldapsync() { |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
161 for H in ldap ldap2 ldap3 ; do |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
162 echo -ne $H":\t" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
163 ldapsearch -LLL -h $H.astro.princeton.edu -x -s base '(objectclass=*)' contextCSN | egrep -v '^($|dn)' | sed 's/contextCSN: //' |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
164 done |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
165 echo -ne "now:\t" |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
166 date -u +%Y%m%d%H%M%S |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
167 } |
cdfa42697eec
Updated lds, added ldsauth and ldapsync
Steve Huston <huston@astro.princeton.edu>
parents:
82
diff
changeset
|
168 |
13
dacbbae5965c
Added Ruby setup variables
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
12
diff
changeset
|
169 # Other |
60
c27db9abf42c
* Removed 'sy' alias - syrinx is no more
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
56
diff
changeset
|
170 alias condor_check="ls -lat /u/condor/hosts/*/log/MasterLog" |
50
407b3bac9cb0
Added 'slurp' alias for pulling content from a web directory
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
49
diff
changeset
|
171 alias slurp="wget -r -l1 -np -nd -A.mp3" |
156
5dfc68e01309
New ldm/lds, and a quick way to know when is now
Steve Huston <huston@astro.princeton.edu>
parents:
155
diff
changeset
|
172 alias zulu="date -u +%Y%m%d%H%M%SZ" |
15
fe83d9892ee3
Replaced tests with a 'case' in .bash_aliases
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
13
diff
changeset
|
173 |
51
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
174 # Other Functions |
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
175 |
113 | 176 mc-backup() { |
177 pushd ~/Dropbox/Saves/minecraft/saves; | |
178 if [ -d $1 ]; then | |
179 tar cvf - $1 | bzip2 > ../$1_`date +%Y%m%d%H%M%S`.tar.bz2; | |
180 fi; | |
181 popd | |
182 } | |
183 | |
100 | 184 tock() { |
185 while true ; do | |
186 if [ `date +%S` -gt 42 ] ; then | |
187 if [ `date +%S` -lt 47 ] ; then | |
188 afplay /System/Library/Sounds/Pop.aiff & | |
189 fi | |
190 fi | |
191 sleep 1 | |
192 done > /dev/null 2>&1 | |
193 } | |
51
44c36681ca0f
* Removed many double quotes from tests; they caused the tests to pass on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
50
diff
changeset
|
194 |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
195 update_toodledo() { |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
196 case `hostname -s` in |
43
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
197 xanadu|syrinx) |
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
198 TOODLEDO_CMDS="toodledo tasks @Work; toodledo tasks @Anywhere" |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
199 ;; |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
200 |
49
8d204a89b981
* Local Perl install paths weren't quite right - they assumed a link existed
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
45
diff
changeset
|
201 milton|joshua) |
43
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
202 TOODLEDO_CMDS="toodledo tasks @Home; toodledo tasks @Anywhere" |
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
203 ;; |
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
204 |
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
205 rapture) |
0a7d093f4c04
* Changed Toodledo sorts/greps based on context, not folder
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
42
diff
changeset
|
206 TOODLEDO_CMDS="toodledo tasks @Anywhere" |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
207 ;; |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
208 esac |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
209 |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
210 [[ -e $HOME/.todo.$$ ]] && return |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
211 |
44
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
212 eval $TOODLEDO_CMDS | egrep '^<[0-9]+>' | ( |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
213 set -f |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
214 while read TASK ; do |
45
183d95ce098c
* More portable, should work on Linux (previous one needed another escape
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
44
diff
changeset
|
215 |
183d95ce098c
* More portable, should work on Linux (previous one needed another escape
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
44
diff
changeset
|
216 if echo $TASK | grep -v 'startdate\[' ; then |
44
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
217 continue |
45
183d95ce098c
* More portable, should work on Linux (previous one needed another escape
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
44
diff
changeset
|
218 fi |
44
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
219 |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
220 TODAY=`date "+%Y/%m/%d"` |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
221 STARTDATE=`echo $TASK | sed 's/.*startdate\[\([^ [.].]]*\)\].*/\1/'` |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
222 [[ "$TODAY" > "$STARTDATE" || "$TODAY" == "$STARTDATE" ]] && echo $TASK |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
223 |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
224 done |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
225 ) >> $HOME/.todo.$$ |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
226 |
34
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
227 [[ $? -eq 255 ]] && { |
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
228 # Update failed; clean up & don't do it again. |
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
229 rm $HOME/.todo.$$ |
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
230 touch $HOME/.todo |
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
231 return |
82fde4c9245c
* Date option on Macs is -H, not -h
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
33
diff
changeset
|
232 } |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
233 echo "To-do list as of `date`" > $HOME/.todo |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
234 echo "---------------------------------------------" >> $HOME/.todo |
44
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
235 egrep '#\[[0-9]+/[0-9]+/[0-9]+' $HOME/.todo.$$| sort -k 6.3 >> $HOME/.todo |
0fc97adb3d7a
* Hide future tasks
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
43
diff
changeset
|
236 egrep -v '(#\[[0-9]+/[0-9]+/[0-9]+|status\[(Delegated|Waiting|Hold|Postponed|Someday|Canceled|Reference)\])' $HOME/.todo.$$ >> $HOME/.todo |
33
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
237 rm $HOME/.todo.$$ |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
238 } |
f59f847377d7
* Added toodledo interfacing
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
30
diff
changeset
|
239 |
63
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
240 TOhtml() { |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
241 OUTDIR=`mktemp -d TOHTML.XXXXXX` |
75
7d4e0869d09d
Use 'hg locate' instead of 'svn ls -R'
Steve Huston <huston@srhuston.net>
parents:
73
diff
changeset
|
242 for F in `hg locate` ; do |
63
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
243 if [ -d $F ] ; then |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
244 continue |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
245 fi |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
246 |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
247 # Files to ignore from the list |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
248 case $F in |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
249 .vim/plugin/gnupg.vim | \ |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
250 .vim/syntax/syslog.vim| \ |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
251 .vim/syntax/yum.vim \ |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
252 ) |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
253 continue |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
254 ;; |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
255 *) |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
256 ;; |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
257 esac |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
258 |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
259 OUT=`echo $F | sed -e 's/^\.//' -e 's,.*/,,'` |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
260 vim -e +TOhtml "+w ${OUTDIR}/${OUT}.html" +qa\! $F |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
261 done |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
262 echo Files stored in $OUTDIR |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
263 } |
590b4d17d933
* TOhtml function that makes pretty prints of all the dotfiles for display
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
62
diff
changeset
|
264 |
125
28c2ddd02e8f
Replace hgs alias with function
Steve Huston <huston@astro.princeton.edu>
parents:
124
diff
changeset
|
265 hgs() { |
154
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
266 # We assume here that if the host is a Mac, we're going to open the |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
267 # connection automatically, otherwise we echo the URL to the terminal to be |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
268 # opened |
128
4b397e94691a
Why didn't I know 'hg root' existed.. much cleaner.
Steve Huston <huston@astro.princeton.edu>
parents:
125
diff
changeset
|
269 ROOT=`hg root` |
4b397e94691a
Why didn't I know 'hg root' existed.. much cleaner.
Steve Huston <huston@astro.princeton.edu>
parents:
125
diff
changeset
|
270 if [ "$1" == "end" -a -e $ROOT/.hg/hgserve-PID ] ; then |
4b397e94691a
Why didn't I know 'hg root' existed.. much cleaner.
Steve Huston <huston@astro.princeton.edu>
parents:
125
diff
changeset
|
271 kill `cat $ROOT/.hg/hgserve-PID` |
4b397e94691a
Why didn't I know 'hg root' existed.. much cleaner.
Steve Huston <huston@astro.princeton.edu>
parents:
125
diff
changeset
|
272 rm $ROOT/.hg/hgserve-PID |
125
28c2ddd02e8f
Replace hgs alias with function
Steve Huston <huston@astro.princeton.edu>
parents:
124
diff
changeset
|
273 else |
154
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
274 if [ -e $ROOT/.hg/hgserve-PID ] ; then |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
275 P=`cat $ROOT/.hg/hgserve-PID` |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
276 URL=`lsof -n -p $P | grep LISTEN | awk '{print $9}'` |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
277 else |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
278 URL=`hg serve -a localhost -d -p 0 --pid-file $ROOT/.hg/hgserve-PID | sed 's#.*bound to \(.*\))#\1#'` |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
279 fi |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
280 if [ -z "$DARWIN" ] ; then |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
281 echo hg serve on http://$URL/ |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
282 else |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
283 open http://$URL/ |
cfbaaeb8b71d
This makes 'hgs' work nicer on Linux, still may be more tweaks to do
Steve Huston <huston@astro.princeton.edu>
parents:
138
diff
changeset
|
284 fi |
125
28c2ddd02e8f
Replace hgs alias with function
Steve Huston <huston@astro.princeton.edu>
parents:
124
diff
changeset
|
285 fi |
28c2ddd02e8f
Replace hgs alias with function
Steve Huston <huston@astro.princeton.edu>
parents:
124
diff
changeset
|
286 } |
28c2ddd02e8f
Replace hgs alias with function
Steve Huston <huston@astro.princeton.edu>
parents:
124
diff
changeset
|
287 |
15
fe83d9892ee3
Replaced tests with a 'case' in .bash_aliases
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
13
diff
changeset
|
288 # vim: set filetype=sh : |