下面的内容需要理解postgres术语 page, tuple, regclass, relname. sql command 需要用到 pgstattuple,pageinspect extension.Setup Extension create extension pgstatuplecreate extension pageinspect 查询page, index 详细信息 show how many pages in one tableselect pg…
如果表达式中包含特殊字符,Shell 将会进行替换。例如,在双引号中使用变量就是一种替换,转义字符也是一种替换。举个例子: #!/bin/basha10echo -e "Value of a is $a \n" 运行结果:
Value of a is 10
这里 …
Linux之alias:1.查看当前别名:alias# alias alias cpcp -i alias l.ls -d .* --colortty alias llls -l --colortty alias lsls --colortty alias mvmv -i alias rmrm -i alias whichalias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde 2.设…