2018년 7월 15일 일요일

해피해킹 키보드 루프

해피해킹 키보드 스킨이 없을까? 하고 찾아보다가
우연히 발견하게된 키보드 루프를 구매했다.
Bird Electronic Keyboard Roof Pro Ink PZ – Kbrf – hhprob

전체적으로 키보드를 잘 커버해 주고
키보드가 다치지(?) 않게 우레탄 부품도 들어 있어 나름 만족한다.

이제 먼지에서 어느정도 해방될까 했는데
색깔이 어두운 색이라 햇빛이 비칠때 먼지가 눈에 너무 잘 띄는게 흠이라면 흠.
하지만 이미 샀으니 그냥 열심히 먼지 털어주면서 사용해야지!















2018년 7월 11일 수요일

Shell script for 활용

vi test

linux
unix
minix
freebsd
openbsd
netbsd
macos
----------------------------
vi test.sh

#!/bin/sh

var1=`cat test`
echo $var1
for value in $var1
do
        touch $value
done

----------------------------
result

$ ls -ltr
-rw-rw-r-- 1 codehexa codehexa 80 2018-07-11 09:47 test.sh
-rw-rw-r-- 1 codehexa codehexa47 2018-07-11 16:47 test
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 linux
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 unix
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 minix
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 freebsd
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 openbsd
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 netbsd
-rw-rw-r-- 1 codehexa codehexa  0 2018-07-11 16:47 macos

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

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