You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
#!/bin/bash
|
|
# info: search file or directory
|
|
# options: USER OBJECT [PATH]
|
|
#
|
|
# example: v-search-fs-object admin hello.txt
|
|
#
|
|
# This function search files and directories on the file system
|
|
|
|
#----------------------------------------------------------#
|
|
# Variables & Functions #
|
|
#----------------------------------------------------------#
|
|
|
|
user=$1
|
|
object=$2
|
|
path=$3
|
|
|
|
# Includes
|
|
# shellcheck source=/etc/hestiacp/hestia.conf
|
|
source /etc/hestiacp/hestia.conf
|
|
# shellcheck source=/usr/local/hestia/func/main.sh
|
|
source $HESTIA/func/main.sh
|
|
# load config file
|
|
source_conf "$HESTIA/conf/hestia.conf"
|
|
|
|
#----------------------------------------------------------#
|
|
# Verifications #
|
|
#----------------------------------------------------------#
|
|
|
|
check_args '2' "$#" 'USER OBJECT [PATH]'
|
|
is_format_valid 'user'
|
|
is_object_valid 'user' 'USER' "$user"
|
|
|
|
# Perform verification if read-only mode is enabled
|
|
check_hestia_demo_mode
|
|
|
|
# Checking user homedir
|
|
homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
|
|
if [ -z $homedir ]; then
|
|
echo "Error: user home directory doesn't exist"
|
|
exit 12
|
|
fi
|
|
|
|
# Checking path
|
|
if [ -n "$path" ]; then
|
|
rpath=$(readlink -f "$path")
|
|
if [ -z "$(echo $rpath | grep $homedir)" ]; then
|
|
echo "Error: invalid path $path"
|
|
exit 2
|
|
fi
|
|
else
|
|
path=$homedir
|
|
fi
|
|
|
|
# Listing directory
|
|
user_exec find "$path" -name "$object" \
|
|
-printf "%y|%m|%TY-%Tm-%Td|%TH:%TM|%u|%g|%s|%P\n" 2> /dev/null
|
|
# -printf "%y|%m|%TY-%Tm-%Td|%TH:%TM:%TS|%u|%g|%s|%P\n" 2>/dev/null
|
|
|
|
# Exiting
|
|
exit $?
|