본문 바로가기

PRACTICE/Test7

[Windows] 프로세스 카운트 및 종료 1234567891011121314151617181920@echo offsetlocal  :: DP_MES_L3.exe 프로세스 개수 확인wmic process get CommandLine, handle, executablepath /format:csv | find /v "find.exe" | find /C "DP_MES_L3.exe" > count.txtset /p count=count.txtdel count.txt  :: 프로세스가 실행 중이면 종료if %count% GTR 0 (    echo DP_MES_L3.exe 실행 중 → 종료합니다.    taskkill /F /IM DP_MES_L3.exe) else (    echo DP_MES_L3.exe 실행 중이지 않음.)  endlocalColo.. 2022. 3. 3.
[csh] 파일의 내용을 한줄로 출력 1234567#한줄 출력cat filesystem_list.tmp | perl -p -e “s|\n| |”  #perl 뒤에 sed를 쓰려면 -l 옵션을 사용해서 버퍼링을 비활성화해야함.perl -p -l -e “s|\n| |” | sed ‘s/ /-/g’  sed ‘s/ /-/g’ 대신 tr ' ' '-'을 써도 됨. 2021. 6. 26.
[JavaScript] 다음 주 수요일 계산 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061!DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>날짜 계산/title>    script src="https://code.jquery.com/jquery-3.6.0.min.js">/script>/head>body>    h1>날짜 계산기/h1>        label for="type_audio_sele.. 2021. 6. 10.
[SQL] 6주 전, 이번주, 다음주 수요일 체크 12345SELECT     TO_CHAR(NEXT_DAY(SYSDATE - 49, 4), 'YYYYMMDD') AS six_weeks_ago_wed,  -- 6주 전 수요일    TO_CHAR(TRUNC(SYSDATE, 'IW') + 2, 'YYYYMMDD') AS this_week_wed,      -- 이번 주 수요일    TO_CHAR(NEXT_DAY(SYSDATE, 4), 'YYYYMMDD') AS next_wed           -- 다음 주 수요일FROM DUAL;Colored by Color Scripter * SYSDATE : 현재 날짜 반환* TRUNC(SYSDATE, 'IW'): 현재 날짜가 속한 주의 시작일 = 이번주 월요일* 오라클 기준 숫자와 요일 매칭 -> 일:1 / 월:2 .. 2021. 6. 9.
[csh] 경로 설정 및 폴더 생성 경로를 명령어를 통해서 확인하고해당 경로에 현재 생성하려는 폴더가 존재하지않으면 폴더를 생성함.1234567if(! -d os_info) then     mkdir os_infoendif set os = ‘uname’set os_pwd = ‘pwd’set tmp = “$os_pwd/os_info” 2021. 5. 14.
[OS, Windows] Windows cmd 명령어 (시스템 정보 추출) 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162// hostnamewmic cpu get systemname // modelwmic csproduct get name // serialwmic bios get serialnumber // oswmic os get name // os versionwmic os get version // os bitwmic os get osarchitecture // cpu ghzwmic cpu get name // real memory totalwmic computersystem get totalphysicalmemo.. 2021. 5. 3.
[OS, HP-UX] HP-UX 명령어 (시스템 정보 추출) 123456789101112//os, cpu 기본정보/usr/contrib/bin/machinfo  //정보 얻을 수 있는 명령어/etc/landcan (MAC Address)glance (CPU 사용)netstat -r (IP Address)  //하드디스크 정보 출력/usr/sbin/ioscan -fknC disk |grep disk |grep -v “NO_HW” |grep -v “CD-ROM” |grep -v “DVD-ROM” |wc -lcs 2021. 4. 20.