Skip to content

Commit 0e5e7da

Browse files
committed
[powershell] minor example update
1 parent a118b2d commit 0e5e7da

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: content/dev-notes/python/conda.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
|Command|Desc|
66
|-------|----|
77
|`conda info`|get version info|
8-
|`conda create --name ENVNAME python=3.6`|create new environment|
8+
|`conda create --name ENVNAME python=3.10`|create new environment|
99
|`conda remove --name ENVNAME --all`|delete an entire environment|
1010
|`conda activate ENVNAME / conda deactivate`|activate/deactivate environment|
1111
|`conda install PKGNAME==3.1.4`|install specific package|

Diff for: content/dev-notes/shells/powershell.md

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ Get-Process word* | Stop-Process
169169
Do-Something 3> warning.txt # Writes warning output to warning.txt
170170
Do-Something 4>> verbose.txt # Appends verbose.txt with the verbose output
171171
Do-Something 5>&1 # Writes debug output to the output stream
172+
Do-Something *>&1 # Redirects all streams to stdout
172173
Do-Something *> out.txt # Redirects all streams to out.txt
173174
```
174175

0 commit comments

Comments
 (0)