Recent Posts

[Jekyll] 모아 볼 수 있는 콜렉션 만들기

1 minute read

포스팅만을 이용해서 글을 작성하는것은 블로거로써 충분한 일이지만 종류별로 세분화 할 수 있는 글을 모아두기에는 적절하지 않은것 같아서 아래와 같이 콜렉션 별로 글을 볼 수 있도록 추가 하였다.

[RDPWrapper] Windows 10 Pro 20H2에서 not supported issue 해결하기

1 minute read

RDP Wrapper는 윈도우 원격을 여러명이서 동시에 사용할 수 있도록 해주는 좋은 프로그램이다. 하지만 그냥 설치 했을때는 not supported 문제가 발생하여 사용을 할 수 없는 경우가 있다. 본 게시물에서는 Win 10 Pro 20H2에서 not supported문제를 ...

[Shell] 날짜로 정렬해서 파일 목록 뽑기

less than 1 minute read

Method 1: 오래된 파일 부터 보이기 This is useful if you want to check and erase old files. Check the old files by putting the -r option on top. 1 2 3 4 5 6 7 8 9 10 #...

[Shell] Exit and exit status

3 minute read

The exit command terminates a script, just as in a C program. It can also return a value, which is available to the script’s parent process.