Advertisement
zamotivator

Untitled

Feb 8th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. ➜ cat .applist
  2. [crypto,asn1,public_key,inets,ssl,syntax_tools,compiler,kernel,stdlib,ranch,cowlib,jsx,goldrush,cowboy,ecoveralls,epgsql,gproc,lager,mimetypes,sync,uuid,qlp]oleg@x200:~/dev/qlp (git: mad_migration) ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
  3. ➜ erl
  4. Erlang/OTP 17 [erts-6.3] [source] [64-bit] [smp:2:2] [async-threads:10] [hipe] [kernel-poll:false]
  5.  
  6. Eshell V6.3 (abort with ^G)
  7. 1> application:start(crypto).
  8. ok
  9. 2> application:start(asn1).
  10. ok
  11. 3> application:start(public_key).
  12. ok
  13. 4> application:start(inets).
  14. ok
  15. 5> application:start(ssl).
  16. ok
  17. 6> application:start(syntax_tools).
  18. ok
  19. 7> application:start(compiler).
  20. ok
  21. 8> application:start(kernel).
  22. {error,{already_started,kernel}}
  23. 9> application:start(stdlib).
  24. {error,{already_started,stdlib}}
  25. 10> application:start(ranch).
  26. {error,{"no such file or directory","ranch.app"}}
  27. 11> application:start(cowlib).
  28. {error,{"no such file or directory","cowlib.app"}}
  29. 12>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement