i have a 32-bit system i am retiring and replacing with a 64-bit system.
i need to move a scad rrd files. a simple copy to system and pray that it still works would be too easy.
on the 32-bit system:
~ cd /dir
~ for f in *.xml; do rrdtool restore ${f} `echo ${f} | cut -f1 -d .`.rrd; done
~ scp *.xml me@64bit:/there
convert the xml files to rrd files on the 64-bit system
~ for f in *.xml; do rrdtool restore ${f} `echo ${f} | cut -f1 -d .`.rrd; done
ugh.
No comments:
Post a Comment