-1

我有一个简单的 php 页面,可以将文件写入我的服务器。

// open new file
     $filename = "$name.txt";
    $fh = fopen($filename, "w");
    fwrite($fh, "$name".";"."$abbreviation".";"."$uid".";");
    fclose($fh);

然后我有一个 cron 作业,我知道它以 root 身份运行,并且需要它。

if [[ $EUID -ne 0 ]]; then
   echo "This script must be run as root" 1>&2
   exit 1
fi

cronjob 是一个 bash 脚本,可以检测文件是否存在,但它似乎无法读取文件的内容。

#!/bin/bash


######################################################
#### Loop through the files and generate coincode ####
######################################################
for file in /home/test/customcoincode/queue/*
    do
    echo $file
    chmod 777 $file
    echo "read file"

    while read -r coinfile; do
      echo $coinfile
    echo "Assign variables from file"

#############################################
#### Set the variables to from the file #####
#############################################

    coinName=$(echo $coinfile | cut -f1 -d\;)
    coinNameAbreviation=$(echo $coinfile | cut -f2 -d\;)
    UId=$(echo $coinfile | cut -f3 -d\;)

    done < $file

    echo "`date +%H:%M:%S` - $coinName : Your Kryptocoin is being compiled!"

    echo $file

    echo "copy $coinName file to generated directory"

    cp -b $file /home/test/customcoincode/generatedCoins/$coinName.txt

    echo "`date +%H:%M:%S` : Delete queue file"

#   rm -f $file



done

echo $file识别文件存在

echo $coinfile为空白

然而,当我nano ./coinfile.txt在终端时,我可以清楚地看到那里有文字

我运行ls -l,我看到该文件具有权限

-rw-r--r-- 1 www-data www-data

我的印象是这仍然意味着其他用户可以读取该文件?如果我打开文件并读取内容,我是否需要能够执行该文件?

任何建议将不胜感激。如果你愿意,我可以展开并显示我的代码,但是在我调用 bash 脚本来编写文件之前它是有效的……那时它会在 root 用户下使用 rwx 保存文件,然后可以读取。但这会导致 php 页面中的其他问题,因此不是一个选项。

4

1 回答 1

2

你有:

 while read -r coinfile; do
 ...

我没有看到任何迹象表明您正在阅读$file. 命令

read -r coinfile

将简单地从标准输入中读取(-r仅影响反斜杠的处理)。在 cron 作业中,如果我没记错的话,标准输入是空的或不可用的,这可以解释为什么$coinfile是空的。

如果你真的读过$file——例如,如果你的真实代码看起来像:

while read -r coinfile; do
    ...
done <$file

那么你需要向我们展示你的整个脚本,或者至少是它的一个独立版本,它会出现问题。实际上,无论是否存在问题,您都需要向我们展示您的整个脚本。

http://sscce.org/

于 2013-09-16T19:34:50.960 回答