随笔- 3
文章- 0
评论- 0
阅读-
456
05 2022 档案
VSCode Snippet
摘要:{ // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is wh
阅读全文
xShell执行js脚本
摘要:var CMD = 'ls'; var INTERVAL = 1; var MAX = 5; var CR = String.fromCharCode(13); var LF = String.fromCharCode(10); var CRLF = CR + LF; function Main()
阅读全文
Windows Powershell个性化设置
摘要:1. 设置Powershell prompt只显示当前目录; 2. 设置Powershell title为当前路径; 这个文件的路径为:echo $profile # file location:echo $profilefunction prompt { $p = Split-Path -leaf
阅读全文