File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 5
5
| Command| Desc|
6
6
| -------| ----|
7
7
| ` 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|
9
9
| ` conda remove --name ENVNAME --all ` | delete an entire environment|
10
10
| ` conda activate ENVNAME / conda deactivate ` | activate/deactivate environment|
11
11
| ` conda install PKGNAME==3.1.4 ` | install specific package|
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ Get-Process word* | Stop-Process
169
169
Do-Something 3> warning.txt # Writes warning output to warning.txt
170
170
Do-Something 4>> verbose.txt # Appends verbose.txt with the verbose output
171
171
Do-Something 5>&1 # Writes debug output to the output stream
172
+ Do-Something *>&1 # Redirects all streams to stdout
172
173
Do-Something *> out.txt # Redirects all streams to out.txt
173
174
```
174
175
You can’t perform that action at this time.
0 commit comments