June 28, 2021
angular
angular路由如何实现的?
两者实现模式: history,hash; hash的url携带#, history,会作为path部分。最终底层都是靠的js支持。
如何配置模块下子路由?
为何自定义元素,浏览器能识别?
底层采用CustomeElementRegistry,支持四种方法 ...
Read more
April 20, 2021
shell
脚本
通配符有哪些?
表示任意多字符? 任意单个字符[xx] j集合中的[!xx] 非集中的[[:alpha:]] 字母 [:digiti:] 数字 [:upper:] 大写字母 [:lower:] 小写字母 [:alnum:] 字母数字
软连接 vs 硬链接
硬链接:
每个文件只有 ...
Read more
April 19, 2021
shell
脚本
date
cal
date vs cal ?
date 日期,cal 日历
Read more
April 19, 2021
shell
脚本
df
free
df vs free ?
df 查看磁盘空间;free 查看内存情况
为何 Linux中的文件名与命令是区分大小写的 ?Linux中存在扩展名吗?
Linux并没有“文件扩展名”的概念。你想怎么命名文件都行。文件内容或用途是由其他方式来决定的
如何判定文件类型?
file xx
查看文 ...
Read more
April 15, 2021
shell
脚本
login
ssh vs rlogin 有何区别?
ssh会对发送内容加密,比rlogin更安全;ssh支持自动化,rlogin不支持。
ssh如何实现自动化?
ssh expect
12345678910111213141516171819202122232425262728293031#!/us ...
Read more
April 15, 2021
shell
脚本
shutdown
halt
poweroff
关闭系统并切断电源。会发送一个 ACPI 信号来通知系统关机
halt
halt:只关闭系统,不切断电源。通知硬件来停止所有的 CPU 功能,但是仍然保持通电。你可以用它使系统处于低层维护状态
1halt
shutdown
/sbin/shutdo ...
Read more