운영체제/리눅스(CentOS)21 find 특정 파일 제외 검색 [find | xargs grep ] 리눅스 find명령어에서 특정 파일 제외 후 검색하는 방법 현재 실무에서 요긴하게 쓰고 있는 명령어 이다. 연동하고 있는 프로그램의 로그를 검색할 때 하루에도 여러 번 사용하고 있다. → 현재폴더에 log확장자를 제외한 파일에서 search 문자열을 검색하는 명령어 find ./ -name "*" -and ! -name "*.log" | xargs grep -n --color=auto "search" 2>/dev/null ./log/search_20211219.txt: 1001: search test ./log/search_20212220.txt: 1001: search test ./log/search_20212220.txt: 1001: search test 중간의 xargs 는 앞에 find에서 찾은 .. 2021. 12. 20. php 5.3에 phpredis 컴파일설치 설치할 서버에 php환경 설치환경 php 5.3.3 redis-2.2.7 파일을 다운로드합니다. wget http://pecl.php.net/get/redis-2.2.7.tgz cs 다운로드한 파일을 압축 풀어 줍니다. 압축 푼 폴더로 이동후 /usr/local/php/bin/phpize 실행해 줍니다. (phpize는 php의 확장 모듈을 올리는 유틸이다.) tar -zxvf redis-2.2.7.tgz package.xml redis-2.2.7/tests/array-tests.php redis-2.2.7/tests/memory.php redis-2.2.7/tests/mkring.sh redis-2.2.7/tests/test.php redis-2.2.7/tests/TestRedis.php redis-2.. 2021. 12. 3. CentOS 7.6 에 redis 설치 /usr/local/src로 이동후 wget 명령으로 파일을 다운로드하고 압축을 푼 후 차례대로 실행합니다. wget http://download.redis.io/redis-stable.tar.gz tar -zxvf redis-stable.tar.gz cd redis-stable make make install [root@localhost redis-stable]# make install cd src && make install make[1]: Entering directory `/usr/local/src/redis-stable/src' Hint: It's a good idea to run 'make test' ;) INSTALL redis-server INSTALL redis-benchmark INST.. 2021. 12. 2. whatis 명령어 간략하게 무엇을 하는 명령어인지 설명을 해주는 명령어입니다. man 명령어 매뉴얼의 첫문장 내용을 가져온다. [root@localhost ~]# whatis cp cp (1) - copy files and directories [root@localhost ~]# whatis man man (1) - an interface to the on-line reference manuals [root@localhost ~]# 2021. 8. 26. 이전 1 2 3 4 5 6 다음