WindowsOS개발환경
-
pwsh.exe💕명령어 한줄에 동시에 2개 입력하는 방법&&WindowsOS개발환경/PowerShell 2023. 2. 13. 15:37
https://stackoverflow.com/questions/563600/can-i-get-or-and-to-work-in-powershell Can I get "&&" or "-and" to work in PowerShell? Note: This question originally asked in 2009, when powershell did not have support for the && operator. In 2019, per Jay's answer, microsoft added support for && and || in Powershel... stackoverflow.com
-
파워셀 업데이트 하기powershell update(pwsh.exe 관리자권한으로 들어가서 밑에 그냥 치면 됨. 개편함. 💕WindowsOS개발환경/PowerShell 2023. 2. 13. 15:33
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" https://jae04099.tistory.com/entry/Console-PowerShell-%EC%97%B0%EC%82%B0%EC%9E%90 [Console] PowerShell && 연산자 깃 명령어 등을 찾다보면, &&연산자를 이용해서 설명해주는 곳 들이 많다. 너무 기본적이고 필수적인건데 지원을 안해줘서 유저들이 항의하고있는 장면도 발견했다. 꽤 된 일이지만, 모두의 노 jae04099.tistory.com
-
Powershell에서 파일 내 문자열 찾기 폴더에서 *.cpp 이렇게WindowsOS개발환경/PowerShell 2023. 2. 13. 15:28
https://erratum.tistory.com/entry/Powershell%EC%97%90%EC%84%9C-%ED%8C%8C%EC%9D%BC-%EB%82%B4-%EB%AC%B8%EC%9E%90%EC%97%B4-%EC%B0%BE%EA%B8%B0 Powershell에서 파일 내 문자열 찾기 Unix나 Linux와 같은 OS에서는 파일 내 문자열 찾는 유틸리티라면 누구나 grep을 떠올린다. 광활한 file system에서 내가 원하는 문자열을 포함하고 있는 파일을 찾는 것이 생각보다 더욱 빈번하고 중요 erratum.tistory.com
-
WindowsOS❤️윈도우에서 러스트 target폴더 하위폴더 검색하기 & 찾은 다음 그 폴더 삭제하기(러스트 나오는 쓰레기target/ C#나오는 쓰레기 obj bin하위 폴더 찾아서 다 지워라 귀찮다!!WindowsOS개발환경/PowerShell 2023. 2. 13. 15:04
우선 target폴더 검색 dir .\ -r -i "target" target폴더 찾아서 지우기(파워셀에서 실행해야함 pwsh.exe) Get-ChildItem -Filter ./target -Recurse -Force | Remove-Item -Recurse -Force 귀찮은 C# bin 폴더 obj 폴더 하위폴더 다 찾아서 다 지워주기 귀찮아 죽겠네 !!!! Get-ChildItem -Filter ./bin -Recurse -Force | Remove-Item -Recurse -Force && Get-ChildItem -Filter ./obj -Recurse -Force | Remove-Item -Recurse -Force https://sungtg.tistory.com/m/810 [윈도우7] 파일..
-
WindowsOS💕파워셀 실행명령어pwsh.exe(또는 powershell.exe)WindowsOS개발환경/PowerShell 2023. 2. 8. 17:32
https://powershellexplained.com/2017-12-29-Powershell-what-is-pwsh/ Powershell: What is pwsh.exeThe pwsh.exe process is the new name for PowerShell Core starting with version 6.0. The executable changed names from powershell.exe to pwsh.exe. Let’s take a look at this executable. Index Installing PowerShell 6.0 The best place to start is over on thepowershellexplained.com WindowsOS_윈도우_개발자세팅_파워셀_..
-
WindowsOS💕wsl.exe -d Ubuntu(우분투(LinuxOS) 가상환경 실행하기WindowsOS개발환경 2023. 2. 8. 17:30
wsl.exe 가상환경실행 wsl.exe -d Ubuntu 우분투(Linux) 가상환경 종료시키기 wsl.exe --terminate Ubuntu 기억이 잘 안 날땐 -t까지만 쳐서 커닝하자 ㅋ S D:\> wsl.exe -t 인수 --terminate에 필수 매개 변수가 없습니다. PS D:\> wsl.exe --terminate Ubuntu 작업을 완료했습니다. https://learn.microsoft.com/ko-kr/windows/wsl/basic-commands WSL의 기본 명령 WSL(Linux용 Windows 하위 시스템)에 포함된 기본 명령에 대한 참고자료입니다. learn.microsoft.com