일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- vscode
- Windows 10
- 줄바꿈 문자
- tomcat
- netsh
- Windows
- Eclipse
- 단축키
- lsof
- GIT
- VirtualBox
- grep
- find
- web.xml
- Quartz
- resource
- Source
- JavaScript
- xargs
- plugin
- import
- Mac
- port
- bash
- ssh
- maVen
- context
- profile
- 네트워크
- Today
- Total
목록OS & Shell (147)
develog
tar# 압축하기# tar 옵션 tar파일명 --exclude 대상디렉토리tar cvf ARCHIVE_FILENAME_backup_$(date '+%Y%m%d').tar \ --exclude '.DS_Store' \ --exclude '.git/' \ --exclude '.idea/' \ --exclude '*.iml' \ --exclude 'target/' \ --exclude 'build/' \ --exclude 'admin/uploads' \ # 마지막에 / 가 없어야 함 DIR_TO_ARCHIVE/# 압축풀기# 특정 디렉토리에 압축 풀기 -C# 특정 디렉토리를 자동으로 생성하지 않는다 => 디렉토리를 먼저 생성하고 압축을 푼다mkdir ARCHIVE_FI..
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..
localhost 말고 새로운 이름을 지정해서 사용 ex) 127.0.0.0 localmac docs.telerik.com/fiddler/observe-traffic/troubleshooting/notraffictolocalhost No Traffic to Localhost | Progress Telerik Fiddler docs.telerik.com
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
$t=abc $d=123 ## abc_123 으로 만들기 $str=$(echo ${t}_${d}) echo $str