add powershell tip

This commit is contained in:
Alexander Popov 2022-07-01 00:55:26 +03:00
parent 78eebe05c2
commit dc74c49009
2 changed files with 19 additions and 2 deletions

View File

@ -1,4 +1,4 @@
baseURL = 'https://me.a2s.su/blog/'
baseURL = 'https://blog.iiiypuk.me/'
languageCode = 'ru'
title = 'Alexander Popov'
theme = 'papermod'
@ -66,7 +66,7 @@ tocopen = false
[[params.profileMode.buttons]]
name = 'Портфолио'
url = 'https://me.a2s.su'
url = 'https://iiiypuk.me'
[params.homeInfoParams]
Title = 'Hi there 👋'

View File

@ -0,0 +1,17 @@
---
title: "PowerShell: Добавить путь в переменную среды PATH"
date: 2022-07-01T00:48:30+03:00
draft: false
tags: [powershell, tips]
---
Получить доступ к PATH в PowerShell можно через переменную `$Env:PATH`.
Вывести её можно просто вызвав:
```
PS $Env:PATH
```
А добавить путь можно таким образом:
```
PS $Env:PATH += ";D:\Software\git\bin\"
```