[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gnunet] Cutting # from Statusfiles
From: |
Igor Wronsky |
Subject: |
Re: [Help-gnunet] Cutting # from Statusfiles |
Date: |
Thu, 5 Sep 2002 10:47:29 +0300 (EEST) |
On Thu, 5 Sep 2002, Christian Muellner wrote:
> I'm just trying to rename the statusfiles generated by visualize_stats from
> e.g. #3QUERY to 3query to show it on my webpage.
> I tried many things....
> How can I cut this # off! :[
> Where is written how the files are named?
visualize_stats.sh uses # to recognize the lines that are
in suitable format.
To remove the #, in visualize_stats.sh, add
| sed -e "s/#//g" |
between "grep" and "while read" on the gnunet-stats
-line.
I.