Loading...

Cleanup abas ERP folders

:heavy_exclamation_mark: This post is older than a year. Consider some information might not be accurate anymore. :heavy_exclamation_mark:

As I cleanup my Mercurial SCM repositories, I found some snippets and gems I have used working as an abas ERP consultant. Each snippet has its purpose and keeps your system clean.

Temporary folder

This janitor shell script deletes all files in the abas ERP tmp folder, that are older than 3 months.

#!/bin/bash
cd /abas
find */tmp -mtime +90 -type f -delete

Infosystems

Infosystems are extensions that can be exported and imported into various abas systems. If you import an Infosystem, the import definitions are not deleted automatically. This snippet deletes the import definition and keeps your import dialog clean. If you don’t do that, the import dialog will still list the imported infosystem as an entry.

#!/bin/bash
# change to root directory of abas ERP
cd /abas/
find */isrein -name "IS*" -type f -delete
# mask definitions
find */isrein -name "mask.*" -type f -delete

If you are using Jasper Reports for PDF generation and printing, the output files are generated in the output folder. This snippets deletes all print output older than 7 days.

#!/bin/bash
cd /abas
find */jasper/output -mtime +7 -type f -delete
Please remember the terms for blog comments.