You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update get rundata PHP server scripts to no longer zip large log files since they should already be gzipped
Code: batch gzip files
for i in `ls /home/rob/www/data/proj3/out/runlog23.*.log`; do gzip $i; done
# Some runs are so large and the ls * syntax breaks because of too many files, so we do:
for i in `ls /home/rob/www/data/proj3/out/runlog2.1*.log`; do gzip $i; done
for i in `ls /home/rob/www/data/proj3/out/runlog2.2*.log`; do gzip $i; done
The text was updated successfully, but these errors were encountered:
To save space. Need to insure that all model routines in php and R are able to handle gz log files.
Code: batch gzip files
The text was updated successfully, but these errors were encountered: