[GRASS-user] RE:How to find shortest distances from the investigation point to the shoreline

Yasuo shimada wrote:

However, I have the relating question... I am also linux-
beginner user.

#db.select point_data fs="," > result.csv
#bash: result.csv: Permission denied

Why does this occur?

probably because you are trying to write a file to the disk in the
current directory, and you are in a read-only directory such as "/".
do "cd ~" or "cd /tmp/" and try again.

Hamish

Dear milton and Hamish

mitton wrote:

db.select point_data fs="," > /home/YOURNORMALUSER/result.csv

Hamish wrote:

probably because you are trying to write a file to the disk in the
current directory, and you are in a read-only directory such as "/".
do "cd ~" or "cd /tmp/" and try again.

Great !!

All my problems were completely solved.

I think that the mailing list of grass is wonderful.

Thank you !!

Best

yasuo shimada
---

Hamish <hamish_b@yahoo.com>さん:

Yasuo shimada wrote:
> However, I have the relating question... I am also linux-
> beginner user.
>
> #db.select point_data fs="," > result.csv
> #bash: result.csv: Permission denied
>
> Why does this occur?

probably because you are trying to write a file to the disk in the
current directory, and you are in a read-only directory such as "/".
do "cd ~" or "cd /tmp/" and try again.

Hamish