SecureCRT Tip 모음
giDong Tip
sz 파일명 // 엔터
그럼
C:\Program Files\SecureCRT\download
에 저장이 된다 ^^
C 소스 파일 색 나오게 하기
출처 : http://webkebi.zany.kr:9003/board/bView.asp?bCode=11&aCode=1837&cBlock=0&cPageNo=1&sType=0&sString=
먼저 ls -aNF --show-control-chars --color=auto 하셔서
파일 이름이나 디렉토리 이름이 컬러로 나온다면 CRT의 잘못이 아니라 vim 의 설정 잘못 입니다.
아마 vi 에서 :syntax on 하시고 :set term=ansi 하시면 보실수 있을 겁니다.
CTAGS
http://jangsalt.tistory.com/entry/ctag%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%86%8C%EC%8A%A4%EB%B6%84%EC%84%9D
리눅스 자체에서 ls 쓸때 색깔이 안 나와요
출처 : http://kldp.org/node/7043
먼저
# vi /etc/profile
하셔서
for i in /etc/profile.d/*.sh ; do
if [ -x $i ]; then
. $i
fi
done
이 부분이 있는지 확인 하시고(없다면 넣으시고...)
# ls /etc/profile.d
하셔서 colorls.sh, colorls.csh 파일이 있는지
확인하세요. 없다면...
--------- colorls.sh -----------------
# color-ls initialization
COLORS=/etc/DIR_COLORS
eval `dircolors --sh /etc/DIR_COLORS`
[ -f "$HOME/.dircolors" ] && eval `dircolors --sh $HOME/.dircolors` && COLORS=$HOME/.dircolors
if echo $SHELL |grep bash 2>&1 >/dev/null; then # aliases are bash only
if ! egrep -qi "^COLOR.*none" $COLORS &>/dev/null; then
alias ll='ls -l --color=tty'
alias l.='ls -d .[a-zA-Z]* --color=tty'
alias ls='ls --color=tty'
else
alias ll='ls -l'
alias l.='ls -d .[a-zA-Z]*'
fi
fi
-------------------------------------------------------
---------- colorls.csh ---------------------
# color-ls initialization
set COLORS=/etc/DIR_COLORS
eval `dircolors -c /etc/DIR_COLORS`
test -f ~/.dircolors && eval `dircolors -c ~/.dircolors` && set COLORS=~/.dircolors
egrep -qi "^COLOR.*none" $COLORS
if ( $? != 0 ) then
alias ll 'ls -l --color=tty'
alias l. 'ls -d .[a-zA-Z]* --color=tty'
alias ls 'ls --color=tty'
else
alias ll 'ls -l'
alias l. 'ls -d .[a-zA-Z]*'
endif
-------------------------------------------------------
이렇게 작성 후에 reboot을 시키세요.