mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 12:57:01 +00:00
add others
sql-like q,screen, tmux
This commit is contained in:
parent
63e19c2d10
commit
25c010a353
33
README.md
33
README.md
@ -1487,6 +1487,39 @@ htop
|
|||||||
read -rsp $'Press any key to continue...\n' -n1 key
|
read -rsp $'Press any key to continue...\n' -n1 key
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### Run sql-like command on files from terminal
|
||||||
|
download:
|
||||||
|
https://github.com/harelba/q
|
||||||
|
example:
|
||||||
|
```bash
|
||||||
|
q -d "," "select c3,c4,c5 from /path/to/file.txt where c3='foo' and c5='boo'"
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Sreen and tmux
|
||||||
|
create detached session foo
|
||||||
|
```bash
|
||||||
|
screen -S foo -d -m
|
||||||
|
tmux new -s foo -d
|
||||||
|
```
|
||||||
|
|
||||||
|
list sessions
|
||||||
|
```bash
|
||||||
|
screen -list
|
||||||
|
tmux ls
|
||||||
|
```
|
||||||
|
|
||||||
|
attach
|
||||||
|
```bash
|
||||||
|
screen -r
|
||||||
|
tmux attach
|
||||||
|
```
|
||||||
|
|
||||||
|
attach to session foo
|
||||||
|
```bash
|
||||||
|
screen -r foo
|
||||||
|
tmux attach -t foo
|
||||||
|
```
|
||||||
|
|
||||||
## System
|
## System
|
||||||
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
|
[[back to top](#handy-bash-oneliner-commands-for-tsv-file-editing)]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user