한큐에 변환하는 쉘스크립트 #!/bin/sh if [ -z $1 ] ; then echo "사용법 : `basename $0` [이전단어] [새단어] [파일]" exit fi source="$1" dest="$2" shift; shift; for i in $*; do file=$i file2="temp$$" sed -e "s|$source|$dest|g" $file > $file2 mv -f $file2 $file rm -f $file2 done 기술빙자사기 2006.07.18
IE 7 대응 activeX 꽁수. html - < [root@home7 movie_play]# cat embed.js document.write(document.getElementById('txt_play').value); 기술빙자사기 2006.07.05