2022년 6월 27일 월요일

리눅스 문자와숫자 조합의 파일이름 정렬( Sort alphanumeric filenames in Linux )

아래 처럼 문자와 숫자가 섞여 있는 파일에 대해서 정렬이 제대로 되지 않을 때

When sorting is not done properly for files with mixed letters and numbers as shown below

[codehexa@codehexa test]$ ls -l

total 0

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t1

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t10

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t2

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t3

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t4

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t5

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t6

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t7

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t8

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t9


다음 sort 명령의 옵션을 통해 해결이 가능하다.

This can be resolved through the options of the following sort command.


[codehexa@codehexa test]$ ls -l | sort -V

total 0

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t1

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t2

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t3

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t4

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t5

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t6

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t7

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t8

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t9

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t10


역방향은 정렬은 r옵션을 추가하면 된다.

For the reverse direction, add the r option to sort.


[codehexa@codehexa test]$ ls -l | sort -Vr

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t10

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t9

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t8

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t7

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t6

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t5

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t4

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t3

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t2

-rw-rw-r-- 1 codehexa codehexa 0 Jun 28 14:34 t1

total 0

2022년 2월 17일 목요일

VMWARE FUSION 윈도우10 키보드, 마우스 입력 오류

 vmware fusion 업그레이드 이후에

키보드 입력이나 마우스 커서는 움직이지만 클릭이 되지 않을 때는 아래의 링크에서 아래의 내용을 참고하면 쉽게 해결이 가능하다.

1) Close all running VMs and quit Fusion.

2) Open System Preferences==>Security & Privacy==>Privacy==>Accessibility, remove VMware Fusion and re-add it into the list.

3) Launch VMware Fusion, run Windows 10 VM.

https://communities.vmware.com/t5/VMware-Fusion-Discussions/mouse-click/td-p/2246451

2022년 1월 2일 일요일

[Windows] 영문 윈도우의 CMD창에서 한글이 깨져서 보일 때 대처 방법

cmd창에서 한글이 제대로 표시되지 않는다.







cmd창에서 chcp 명령을 내리면 

Active code page: 437 로 표시된다.


cmd창에서 chcp 949 명령을 내리면








Active code page: 949 로 바뀌어 표시되며 깨진 한글이 정상적으로 표시된다.







리눅스 문자와숫자 조합의 파일이름 정렬( Sort alphanumeric filenames in Linux )

아래 처럼 문자와 숫자가 섞여 있는 파일에 대해서 정렬이 제대로 되지 않을 때 When sorting is not done properly for files with mixed letters and numbers as shown below [codeh...