-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
38 lines (24 loc) · 747 Bytes
/
README
File metadata and controls
38 lines (24 loc) · 747 Bytes
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
scr README
----------
Utilities to keep track of open screen sessions in a distributed cluster.
scr: start screen session and register it in the list of screens.
scr-l: list available screens.
scr-u: update list of available screens.
scr-r: resume screen session.
Usage example
-------------
[ me@mybox ] $ ssh service
# start screen session
[ me@service123 ] $ scr
[ me@service123 ] $ echo "This is my screen"
# detach, logout and call it a dayx
[ me@service123 ] $ logout
# the day after
[ me@mybox ] $ ssh service
# where did I leave my screen session running?
[ me@service124 ] $ scr-l
service123
# ok resume it
[ me@service123 ] $ scr-r
ssh -XY -t service123 ./scr-r -rd localhost
[ me@service123 ] $ echo "This is my screen"