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
screen -S sc1
ctrl + a + d
or
screen -d name
screen -ls
screen -r id
kill -9 sc1_id
screen -wipe
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, ...…
1.shell命令行进入vim模式set -o vi2.vim常用命令2.1 游标移动 Option name Markup nh,nj,nk,nl 游标上下左右移动n位 n<space> 游标向后移动n位 0,$ 移动到这一行最前面,最后面 gg 移动到文档的第1行 n...…