Created
December 17, 2010 11:47
-
-
Save alexeyr/744819 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F:\MyProgramming\erlang-sqlite3\sqlite3>dir src\*.erl | |
Volume in drive F has no label. | |
Volume Serial Number is 0C3D-7A1B | |
Directory of F:\MyProgramming\erlang-sqlite3\sqlite3\src | |
11.12.2010 17:40 40 308 sqlite3.erl | |
11.12.2010 17:07 18 265 sqlite3_lib.erl | |
2 File(s) 58 573 bytes | |
F:\MyProgramming\erlang-sqlite3\sqlite3>erlc -I include -o ebin src\*.erl | |
f:/MYPROG~1/erlang-sqlite3/sqlite3/src/*.erl:none: I/O error | |
F:\MyProgramming\erlang-sqlite3\sqlite3>erlc -I include -o ebin src\sqlite3.erl src\sqlite3_lib.erl | |
%% it works |
Ah, right, cmd
doesn't expand wildcards :(
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How can I make this work without listing .erl files explicitly?