Screen常用命令

1. New a screen

screen -S sc1

2. Detach a screen

ctrl + a + d

or

screen -d name

3. Search the screen ids & reattach a screen

screen -ls
screen -r id

4. Kill a screen

kill -9 sc1_id
screen -wipe
最近的文章

LC-array1-easy-1,26,27

1. two sumGiven an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may not use the same element twice.Example:Given nums = [2, ...…

algor, array, leetcode继续阅读
更早的文章

Vim基础

1.shell命令行进入vim模式set -o vi2.vim常用命令2.1 游标移动 Option name Markup nh,nj,nk,nl 游标上下左右移动n位 n<space> 游标向后移动n位 0,$ 移动到这一行最前面,最后面 gg 移动到文档的第1行 n...…

cs-basic, vim, linux继续阅读