How to expand a file with MS-DOS' expand program

I want to expand a file with expand program, like MS-DOS, but in Debian Linux. How to do it without wine and other emulators?

The file I want to expand is 256COLOR.BM_ from the Windows 3.1 installation disks.

Asked By: Vad Sim

||

7-zip can expand such files; in Debian, install p7zip-full, then

7z l /path/to/256color.bm_

will show information about the file, and

7z x /path/to/256color.bm_

will decompress it.

Answered By: Stephen Kitt
Categories: Answers Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.