mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
10 lines
104 B
Bash
Executable File
10 lines
104 B
Bash
Executable File
#!/bin/sh
|
|
# This script parse an IDL file
|
|
|
|
DIR=`dirname $1`
|
|
FILE=`basename $1`
|
|
|
|
cd $DIR
|
|
iac -idl $FILE
|
|
|