代码改变世界

随笔分类 -  编程基础

HTML bdo 标签 用来 左右颠倒

2022-02-23 21:46 by jetwill, 65 阅读, 收藏, 编辑
摘要: HTML bdo tag HTML tag stands for "BiDirectional Override" which is used to overrides the current/default text direction. This tag sets the direction o 阅读全文

PowerShell 之常用方法

2021-09-29 20:24 by jetwill, 192 阅读, 收藏, 编辑
摘要: 随笔分类 - 常用 【PowerShell】文件的解压与压缩 摘要:1 New-Item -ItemType File 1.txt -Force #新建文本文件 2 Compress-Archive -Path '1.txt' -DestinationPath '1.zip' -Force #压缩为 阅读全文

PowerShell 教程

2021-09-29 09:03 by jetwill, 215 阅读, 收藏, 编辑
摘要: 随笔分类 - 教程 转载自:https://www.cnblogs.com/XiaoCY/category/1065141.html PowerShell 管道符之Where-Object的使用方法 摘要:可以匹配到QQ为名的结果 阅读全文 PowerShell 【Switch篇】 摘要:如果你学过 阅读全文

PowerShell【变量篇】

2021-09-28 19:48 by jetwill, 95 阅读, 收藏, 编辑
摘要: PS C:\Users\Administrator> $str='这是一个变量' PS C:\Users\Administrator> $str 这是一个变量 PS C:\Users\Administrator> $str='这是一个变量' PS C:\Users\Administrator> $s 阅读全文