'OS'에 해당되는 글 18건

  1. 2008.10.06 Process ID check
  2. 2008.10.06 egrep
  3. 2008.10.06 top
  4. 2008.10.06 cat for input text
  5. 2008.10.06 cut
  6. 2008.10.06 awk - quoting and multi printing
  7. 2008.10.06 Default Program files folder 바꾸기
  8. 2008.10.06 Svchost.exe

Process ID check

OS/Unix 2008. 10. 6. 22:07
top -b -n 1 | grep "process_name" | cut -d" " -f1
Posted by zennken

egrep

OS/Unix 2008. 10. 6. 22:06
egrep '^[1-9]' varchar_size.txt
Posted by zennken

top

OS/Unix 2008. 10. 6. 22:05
top -b -d 1 -p pid | grep process_name
Posted by zennken

cat for input text

OS/Unix 2008. 10. 6. 22:05
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
Posted by zennken

cut

OS/Unix 2008. 10. 6. 22:04
cut -d" " -f3 file_name
Posted by zennken
awk '{print "INSERT INTO AccessPattern VALUES (seq.nextval," "'"'"'" $1 "'"'"'"  ");"}
Posted by zennken
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion

ProgramFilesDir -> 값 바꾸기
Posted by zennken

Svchost.exe

OS/Windows 2008. 10. 6. 21:40
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
Posted by zennken
12

zennken

달력