전체 글 109

~/.local/bin/aa

~/.local/bin/aa #!/bin/sh # 현재 디렉토리에 있는 모든 *.smi 자막들을 *.kor.srt 자막으로 변환한다. # 최종 BOM 없는 UTF-8 FILENAME.kor.srt 자막 파일 생성, 기존 smi 파일은 유지 for i in *.smi; do name=`echo "${i%.*}"`; echo $name; if file "${i}" | grep -qi "utf" # utf 파일(utf-8, utf-16)이면 then ffmpeg -i "${i}" "${name}".kor.srt > /dev/null; # utf-8 *.smi를 utf-8 *.kor.srt로 변환 생성 else # utf8, utf16 이 아니면 # cp949(< euc-kr) *.smi를 utf-8 *.kor..

Package 2019.12.26

css_tistory

출처: 티스토리. 어느 고마운 님 (어디서 받았는지 기억이 ㅠ.ㅠ) @charset "utf-8"; /* 반드시 들어가야 하는 스타일 시작 */ /* 본문 공통 */ body { font-family: 돋움,Dotum,AppleGothic,sans-serif; font-size:12px; line-height: 1.5; /*@background-image=background-image:*/ background-image: none /*@*/; /*@background-image-position=background-position:*/ background-position: left top /*@*/; /*@background-image-repeat=background-repeat:*/ background-..

Config 2019.12.25