Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- react
- intellijIDEA
- LOG4J
- gradle
- Kubernetes
- database
- springboot
- tibero
- maven
- nginx
- IntelliJ
- Git
- JPA
- Windows
- NCP
- nodejs
- wildfly
- JavaScript
- useEffect
- BPMN
- docker
- dbeaver
- Spring
- log4j2
- kubectl
- Java
- MySQL
- mybatis
- gson
- VSCode
Archives
- Today
- Total
목록Powershell (2)
두 손끝의 창조자
[파워쉘]무한 리퀘스트
$i=0; while($true) { %{$i++; write-host -NoNewLine "$i $_" } (Invoke-RestMethod "http://192.168.1.11")-replace '\n', " " }
OS
2023. 8. 1. 10:57
PowerShell에서 현재 디렉토리들의 크기 구하기
$directories = Get-ChildItem -Directory | Sort-Object { try { $_ | Get-ChildItem -Recurse -Force -ErrorAction Stop | Measure-Object -Property Length -Sum | Select-Object -ExpandProperty Sum } catch { 0 } } -Descending foreach ($directory in $directories) { try { $size = Get-ChildItem -Recurse -Force -LiteralPath $directory.FullName | Measure-Object -Property Length -Sum | Select-Object -ExpandPr..
OS
2023. 7. 14. 23:08