[erlang-questions] Shell - compile multiple files with ERLC in Windows
Roberto Ostinelli
roberto@REDACTED
Thu Jan 27 18:15:19 CET 2011
2011/1/27 Antonio Fernández <antonio.fernandez@REDACTED>
>
> Hi all !
>
> I´m erlang beginner programmer.
>
> The following command works on Ubuntu Shell but don´t work on Windows :
>
> $ erlc --o ebin src/*.erl
>
> I tried with .....
>
> c:/erlang>erlc -o ebin src\*.erl
> c:/erlang/src/*.erl:none: I/O error
>
try:
FOR %%f in (src\*.erl) DO erlc -W %command% -o ebin "%%f"
r.
More information about the erlang-questions
mailing list