markdown Windows Powershell
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Windows Powershell相关的知识,希望对你有一定的参考价值。
# powershell
### create a new file with `new-item`
`new-item -name 'foobar.txt' -itemtype file -path . -value 'foobarpop'`
### create a new directory with `new-item`
`new-item -name 'foobar' -itemtype directory -path .`
### moving items with `move-item`
`move-item -path ~/.gitconfig -destination .`
### Opening files
#### vscode
`code ./`
### Powershell Profile (Bash Profile Equivelant)
`~\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1`
### Redirecting Output to File
`git diff develop.. > diff.txt`
以上是关于markdown Windows Powershell的主要内容,如果未能解决你的问题,请参考以下文章
sql Powershell Migration工具http://stackingcode.com/blog/2011/10/12/database-migrations-with-powershel
powershell 来自https://stackoverflow.com/questions/31051103/how-to-export-a-class-in-powershell-v5-mod
如何获取以常用词开头的所有 Windows 服务名称?
saltstack在windows客户端远程执行脚本提示路径不对的问题
windows 为知笔记怎么写markdown
使用powershell完成定时get任务