You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
654 B
Bash
15 lines
654 B
Bash
# Shell Name : getDrctryByOwner.sh
|
|
# Description : 해당되는 디렉토리 안 파일의 소유주를 찾는다.
|
|
# Modification Information
|
|
#
|
|
# 수정일 수정자 수정내용
|
|
# ------- -------- ---------------------------
|
|
# 2009.02.23 조재영 최초 생성
|
|
#
|
|
# @author 공통 서비스 개발팀 조재영
|
|
# @since 2009. 02. 13
|
|
# @version 1.0
|
|
# @see
|
|
#
|
|
# Copyright (C) 2009 by MOPAS All right reserved.
|
|
ls -alF $1 | grep $2 | awk -F" " '{print $3}' |