#!/bin/sh
SHMID=`ipcs -m | grep $USER | cut -d " " -f2`
SEMID=`ipcs -s | grep $USER | cut -d " " -f2`
MSQID=`ipcs -q | grep $USER | cut -d " " -f2`
for shm in $SHMID
do
ipcrm -m $shm
done
for sem in $SEMID
do
ipcrm -s $sem
done
for msq in $MSQID
do
ipcrm -q $msq
done
2017년 12월 18일 월요일
피드 구독하기:
글 (Atom)
리눅스 문자와숫자 조합의 파일이름 정렬( Sort alphanumeric filenames in Linux )
아래 처럼 문자와 숫자가 섞여 있는 파일에 대해서 정렬이 제대로 되지 않을 때 When sorting is not done properly for files with mixed letters and numbers as shown below [codeh...
-
우선 메뉴에서 Tools아래 Orange Options를 선택 후 Common의 Session에서 Commit automatically after every statement를 체크하면 Autocommit is On으로 변경됨 ...
-
1. 하드웨어 시간 확인 #> hwclock -r 2. 소프트웨어 시간 확인 $, #> date 3. 자동 설정 #> rdate -s time.bora.net 4.수동 설정 #> date -s "201...
-
오라클 설치를 하였으니 테스트용으로 HR 샘플 스키마를 설치한다. oracle@solaris:~$ sqlplus sys as sysdba Connected to: SQL*Plus: Release 18.0.0.0.0 - Producti...