We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3f554 commit 9b325c7Copy full SHA for 9b325c7
1 file changed
lgsm/functions/check_permissions.sh
@@ -31,13 +31,13 @@ fn_check_ownership(){
31
{
32
echo -e "User\tGroup\tFile\n"
33
if [ "${selfownissue}" == "1" ]; then
34
- find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
+ find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
35
fi
36
if [ "${funcownissue}" == "1" ]; then
37
- find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
+ find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
38
39
if [ "${filesownissue}" == "1" ]; then
40
- find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
+ find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
41
42
43
} | column -s $'\t' -t | tee -a "${lgsmlog}"
0 commit comments