Changes between Version 12 and Version 13 of ErlangShellInterface


Ignore:
Timestamp:
Apr 19, 2012, 1:05:06 PM (13 years ago)
Author:
manualwiki
Comment:

added some links to ErlangShellInterface

Legend:

Unmodified
Added
Removed
Modified
  • ErlangShellInterface

    v12 v13  
    33= !RefactorErl Console Interface = 
    44 
    5 When running !RefactorErl, you can control the tool via function calls typed into the Erlang shell. !RefactorErl has many features, and is quite a complex system with dozen of functions whose name we do not expect our users to remember. In order to ease and unify the command-level access to all the analysis and refactoring functionality, we have designed a group of Erlang functions that cover the most frequently used features of the tool. The module these functions are located in is called {{{ri}}}, you can use this module to interact easily with the tool. You can add files/directories to the database, run semantic queries, create backups, or even do transformations via this Erlang-level interface. 
     5When running !RefactorErl, you can control the tool via function calls typed into the Erlang shell. !RefactorErl has many features, and is quite a complex system with dozen of functions whose name we do not expect our users to remember. In order to ease and unify the command-level access to all the analysis and refactoring functionality, we have designed a group of Erlang functions that cover the most frequently used features of the tool. The module these functions are located in is called {{{ri}}}, you can use this module to interact easily with the tool. You can add files/directories to the database, run [[SemanticQuery|semantic queries]], create backups, or even do [[RefactoringSteps|transformations]] via this Erlang-level interface. 
    66 
    77== Command-line help == 
     
    284284}}} 
    285285 
    286 Additional options can be given to a semantic query in a proplist as the last 
     286Additional options can be given to a [[SemanticQuery|semantic query]] in a proplist as the last 
    287287argument. The following arguments are currently recognized:\\ 
    288288* '''{out,!FileName}''': write the textual output of a query to a file.\\ 
     
    297297}}} 
    298298 
     299There is a [[SemanticQuery|semantic queries]] page, where you can learn more about this topic. 
    299300 
    300301== Server management command list ==