Notice
Recent Posts
Recent Comments
목록A (2)
준호씨의 블로그
css - a href 에 underbar 제거
다음과 같이 a 테그로 간단한 링크를 만들어 보았다. 새로운 전시 등록하기 마우스를 올리면 아래와 같이 밑줄이 생긴다. 만약 밑줄을 안보이게 하고 싶으면 css 를 고쳐 주면 된다. 아래와 같이 text-decoration: none 으로 지정 해 주면 마우스를 올려도 밑줄이 나타나지 않는다. a { text-decoration: none; }
개발이야기
2017. 6. 11. 17:47
grep 했을 때 Binary file (standard input) matches 나올 때 해결방법
간혹 특정 텍스트 파일을 grep 할 때 해당 파일을 텍스트 파일로 인식 하지 않고 Binary file 로 인식 할 때가 있다. $ grep hello doc.txt Binary file (standard input) matches 이럴 때는 -a (혹은 --text) 옵션을 이용하면 된다. $ grep hello doc.txt -a man grep 해 보면 다음과 같은 내용을 찾을 수 있다. -a, --text Treat all files as ASCII text. Normally grep will simply print ``Binary file ... matches'' if files contain binary characters. Use of this option forces grep to out..
개발이야기
2016. 3. 30. 23:01