- Added package.json to manage development scripts. - Updated restart-services.ps1 to call the new dev script for starting services. - Refactored start-admin.ps1, start-backend.ps1, start-frontend.ps1, and start-mcp.ps1 to utilize the dev script for starting respective services. - Enhanced stop-services.ps1 to improve process termination logic by matching command patterns.
726 B
726 B
title, description, date, draft, slug, image, categories, tags
| title | description | date | draft | slug | image | categories | tags | ||
|---|---|---|---|---|---|---|---|---|---|
| Linux | 2022-09-08T15:19:00+08:00 | true | linux |
|
|
# 使用cd 进入到上一个目录
cd -
复制和粘贴
ctrl + shift + c
ctrl + shift + v
快速移动
# 移动到行首
ctrl + a
# 移动到行尾
ctrl + e
快速删除
# 删除光标之前的内容
ctrl + u
# 删除光标之后的内容
ctrl + k
# 恢复之前删除的内容
ctrl + y
不适用cat
使用less 查看 顶部的文件
less filename
使用alt+backspace删除,以单词为单位
tcpdump host 1.1.1.1
# 并行执行命令 Parallel
find . -type f -name '*.html' -print | parallel gzip