lazarus/tools/lfm_to_lrs.sh
2006-05-22 08:10:49 +00:00

10 lines
101 B
Bash
Executable File

#!/usr/bin/env bash
LFM=$1
LRS=$(echo $LFM | sed -e 's/\.lfm$/\.lrs/')
./lazres $LRS $LFM
# end.