mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-12 14:02:54 -08:00
37 lines
524 B
Bash
Executable File
37 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
# File reader
|
|
|
|
user=$1
|
|
path=$2
|
|
|
|
# Checking arguments
|
|
if [ -z "$path" ]; then
|
|
echo "Usage: USER PATH"
|
|
exit 1
|
|
fi
|
|
|
|
# Checking users
|
|
if [ ! -e "$VESTA/data/users/$user" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Checking homedir
|
|
homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
|
|
if [ -z $homedir ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Checking path
|
|
if [ ! -z "$path" ]; then
|
|
# Validating absolute path
|
|
rpath=$(readlink -f "$path")
|
|
if [ -z "$(echo $rpath |grep $homedir)" ]; then
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
cat "$path"
|
|
|
|
exit
|
|
|