Output files in UNIX systems

Issue #5 new
Tommaso Soru created an issue

In UNIX systems, output files are saved putting a prefix 'decomp\' in front of the file names, instead of saving them into a 'decomp' directory.

A workaround for this:

for file in "decomp"*; do mv "$file" "${file#decomp\\}"; done;

Note: it will skip 'decompressor.jar'.

Comments (1)

  1. Log in to comment