Shell 썸네일형 리스트형 [Linux] Shell 파일 경로 SCRIPT_PATH=$(dirname $(readlink -f ${BASH_SOURCE[0]})) 요렇게 해줘서 현재 실행중이 shell script의 경로를 받아올 수 있음. 더보기 [SVN] SVN Message 캡쳐하기 SVN은 무슨 차이인지 모르겠지만..일반 쉘명령이 출력하는 message와 다른 형식인듯 하다..즉..메시지가 나와도 그것을 쉘에서 캡쳐하거나 파일에 담을수 없었다..(내가 허접해서..ㅠ)이때 사용해줄 방법! ]# svn [subcommand] [........]...[........] --non-interactive 2>[file_name]요런식으로 처리해주니 [file_name]에 해당 message를 캡쳐하는 것을 확인할 수 있었음...원리는 어쩐지 stderr를 사용하는것 같은데....내공이 부족함..ㅠㅠ 더보기 [Linux] 폴더내 파일 인코딩 바꾸기 # filename: euckr2utf8.sh # usage: ./euckr2utf8.sh source target # made by Heesung SHIN (ensual@gmail.com) # #!/bin/bash recurse () { rm -rf $2 echo make the directory $2 mkdir $2 for file in $(ls $1) do name="$1/$file" echo -n "$2/$file" | iconv -fcp949 -tutf8 -o temp # change the encoding of the name of file for newname in $(cat temp) do if [ -d $name ]; then recurse $name $newname else echo c.. 더보기 이전 1 2 3 4 다음