일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- vscode
- Source
- lsof
- VirtualBox
- web.xml
- maVen
- GIT
- port
- plugin
- context
- import
- xargs
- ssh
- Eclipse
- Windows 10
- resource
- Windows
- IntelliJ
- 단축키
- Mac
- 줄바꿈 문자
- 네트워크
- bash
- profile
- find
- netsh
- Quartz
- grep
- JavaScript
- tomcat
- Today
- Total
목록OS & Shell/bash (14)
develog
list=( aa bb ) for item in ${list[@]} do echo $item done
다른 bash 파일 인클루드 방법 source some_bash_file.sh example ## 인클루드 할 파일 $ vi common.sh HOME_PATH=/home ## 인클루드 하는 파일 $ vi run.sh source ./common.sh echo $HOME_PATH ## 실행 $ ./run.sh /home
파일 리스트 검색 find 로 파일을 검색하고 정규식으로 필터링한다 (egrep, grep -E) 파일명에 class 또는 xml 이 포함된 파일을 찾는다 ## egrep -i : 대소문자 무시 find . -type f | egrep -i 'class|xml' 확장자가 .jsp 로 끝나지 않는 jsp 파일을 검색한다 find . -type f | grep '.jsp' | grep -v -E '\.jsp$' 파일 내용 검색 파일명 필터링 (대소문자 무시) 파일 내용 검색 (대소문자 무시) 후 파일명과 내용 출력 find . -type f | egrep -i '(XML|PROPERTIES)$' | xargs egrep -i 'DEFAULT' 파일명 필터링 (.xml, .jsp) 내용에 'Logger'(대소..
file=aa/bb/cc/dd_ee.txt path=`dirname "$file"` name=`basename "$file"` stackoverflow.com/questions/13767252/ubuntu-bash-script-how-to-split-path-by-last-slash Ubuntu bash script: how to split path by last slash? I have a file (say called list.txt) that contains relative paths to files, one path per line, i.e. something like this: foo/bar/file1 foo/bar/baz/file2 goo/file3 I need to write a bash s..
del-log.sh #!/bin/bash logdir=~/logs type=(access error) list=( $(date '+%Y%m%d' --date '1 days ago') $(date '+%Y%m%d' --date '2 days ago') ) for t in ${type[@]}; do for d in ${list[@]}; do file=$(echo ${logdir}/${f}_${d}.log) echo $file done done