top -b -n 1 | grep "process_name" | cut -d" " -f1
'OS'에 해당되는 글 18건
- 2008.10.06 Process ID check
- 2008.10.06 egrep
- 2008.10.06 top
- 2008.10.06 cat for input text
- 2008.10.06 cut
- 2008.10.06 awk - quoting and multi printing
- 2008.10.06 Default Program files folder 바꾸기
- 2008.10.06 Svchost.exe
cat << EOF | is user_id pass
drop table AccessPattern;
drop sequence seq;
create table AccessPattern (num int, function_name varchar(100));
create sequence seq;
EOF
drop table AccessPattern;
drop sequence seq;
create table AccessPattern (num int, function_name varchar(100));
create sequence seq;
EOF
awk '{print "INSERT INTO AccessPattern VALUES (seq.nextval," "'"'"'" $1 "'"'"'" ");"}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
ProgramFilesDir -> 값 바꾸기
ProgramFilesDir -> 값 바꾸기
Svchost.exe : a generic host process name for services that run from dynamic-link libraries (DLLs).
* To view the list of services in svchost
Command: Tasklist /svc
* To see more information about each process
Tasklist /FI "PID eq processID" (with the quotation marks)
From: http://support.microsoft.com/?kbid=314056
* To view the list of services in svchost
Command: Tasklist /svc
* To see more information about each process
Tasklist /FI "PID eq processID" (with the quotation marks)
From: http://support.microsoft.com/?kbid=314056