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 | 29 | 30 |
31 |
Tags
- mybatis
- NCP
- sapfiorielements
- VSCode
- database
- docker
- maven
- Git
- JPA
- nginx
- BPMN
- Kubernetes
- useEffect
- react
- nodejs
- dbeaver
- tibero
- Spring
- gradle
- Linux
- gson
- JavaScript
- Java
- SAP
- LOG4J
- springboot
- MySQL
- Windows
- IntelliJ
- log4j2
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