<div dir="ltr"><div>
<div>Hi!  What is an easy way to rebuild all indexes?  (running this from a menu is okay for now)</div><div><br></div>We are running filePro 5.8 on Linux (CentOS 6.10). <br></div><div></div><div><br></div><div>Eventually, I would like to automate this process from the command line if possible.</div><div><br></div><div>Thanks,</div><div>Ross</div><div><br></div><div>I found the following:<br><a href="http://mailman.celestial.com/pipermail/filepro-list/2016-January/032416.html">http://mailman.celestial.com/pipermail/filepro-list/2016-January/032416.html</a></div><div></div><div>
<pre>echo "Started `date`" >/home/mjs/retime
cd /u/appl/filepro
for file in *
     do echo $file
        if [[ -d $file ]]; then
                echo "Starting Freechain:" $file `date` >>/home/mjs/retime
                /u/appl/fp/lib/freechain $file
                echo $file `date` >>/home/mjs/retime
                /u/appl/fp/dxmaint $file -ra -e
        fi
done
echo "Ended `date`" >>/home/mjs/retime</pre>

</div></div>