일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬
- script
- DATABASE
- 리눅스
- 자바
- postgres
- javascript
- ubuntu
- 설정
- 데이터베이스
- Windows
- Linux
- 아틀라시안
- java
- 자바스크립트
- 윈도우
- 설치
- 3.0
- python
- 노드
- PostgreSQL
- Atlassian
- node
- JS
- 우분투
- 하모니카
- hamonikr
- 스크립트
- DB
- install
- Today
- Total
목록스크립트 (19)
LukeHan 의 잡다한 기술 블로그
Windows 에서 사용자에게 알림을 전달하기 위한 코드 @echo off :: 알림의 이름 set "btitle=batch notiification" :: 알림 내용 set "text=batch ballon notification text" :: 알림 아이콘 :: error, info, none, warning 중 선택 set "icon=info" (echo [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms"^) echo $objNotifyIcon = New-Object System.Windows.Forms.NotifyIcon echo $objNotifyIcon.Icon = [System.Drawing.Syste..
마우스를 이미지에 클릭하면 startDrag의 함수가 시작 됩니다 마우스를 이미지에 클릭하면 startDrag의 함수가 시작 됩니다
1일(24시간) 내에 변경된 파일 찾기 find ./ -type f -mtime -1 변경된지 1일 넘게 지난 파일 찾기 find / -type f -mtime +1 접근된(accessd) 시간은 -amin 혹은 -atime 를 이용한다. 10분 내에 접근된 파일 찾기 find / -type f -amin -10 1일 내에 접근된 파일 찾기 find / -type f -atime -1 /tomcat/test 폴더에서 10일 내로 변경된 파일목록 상세하게 목록으로 보여주기 find /tomcat/test -type f -mtime -10 -ls 현재위치 및 하위 폴더에서 5일 이내로 변경된 확장자명이 jsp 인 파일 목록 출력 find . -name '*.jsp' -mtime -5 (생략해도 되지만 -pr..
사용자 이름으로 실행중인 프로세스 찾기 ps -U user-name -o comm= | sort | uniq pgrep -lU user-name | awk '{print $2}' | sort | uniq rdp smile-user@invesumedemo-92034:~$ ps -ef | grep rdp root 897 1 0 3월10 ? 00:00:00 /usr/sbin/xrdp-sesman xrdp 915 1 0 3월10 ? 00:00:03 /usr/sbin/xrdp xrdp 6391 915 0 01:01 ? 00:00:29 /usr/sbin/xrdp root 6392 897 0 01:01 ? 00:00:00 /usr/sbin/xrdp-sesman smile-u+ 6394 6392 0 01:01 ? 00..
location 프로토콜 : location.protocol 도메인 : location.host 포트 : location.port 도메인 + 포트 : location.host open 새 탭 : onclick="window.open('/url', '_blank')"
var fsCheck = false; function goFullscreen(data){ var fullscreenTarget = document.getElementById('page-top'); if (fsCheck) { if(document.exitFullscreen) { document.exitFullscreen(); } else if(document.webkitExitFullscreen) { document.webkitExitFullscreen(); } else if(document.mozCancelFullScreen) { document.mozCancelFullScreen(); } else if(document.msExitFullscreen) { document.msExitFullscreen()..