Refactor Screen aliases
This commit is contained in:
parent
abfa69fc01
commit
b2f0bdf8fd
|
@ -17,9 +17,10 @@ To enable this feature, add the following line to *zshrc*:
|
||||||
Aliases
|
Aliases
|
||||||
-------
|
-------
|
||||||
|
|
||||||
- `sl` lists sessions/socket directory.
|
- `scr` is short for `screen`.
|
||||||
- `sn` starts a new session.
|
- `scrl` lists sessions/socket directory.
|
||||||
- `sr` attaches to a session if one exists or start a new one.
|
- `scrn` starts a new session.
|
||||||
|
- `scrr` attaches to a session if one exists or start a new one.
|
||||||
|
|
||||||
Authors
|
Authors
|
||||||
-------
|
-------
|
||||||
|
|
|
@ -32,7 +32,8 @@ fi
|
||||||
# Aliases
|
# Aliases
|
||||||
#
|
#
|
||||||
|
|
||||||
alias sl="screen -list"
|
alias scr='screen'
|
||||||
alias sn="screen -U -S"
|
alias scrl='screen -list'
|
||||||
alias sr="screen -a -A -U -D -R"
|
alias scrn='screen -U -S'
|
||||||
|
alias scrr='screen -a -A -U -D -R'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue