Remove one or several modules from the autoload system
nbDel = atomsAutoloadDel(modules[,section])
modules mx1, mx2 or mx3 character string matrix: | |
---|---|
1st Col. Technical name Mandatory 2nd Col. Version Optional If this field is empty or is not present, all versions of the module are removed from the autoload system 3rd Col. Installed section Optional If this field is empty or is not present, modules installed in both “user” and “allusers” sections are searched. |
: :section This argument controls the list of sections where search modules(s) to remove from autoload system. section is a single- string and its value should be :
- “all”: module(s) to remove from autotoload list are searched in both “user” and “allusers” sections.
- “allusers”: module(s) to remove from autotoload system are only searched in the “allusers” autoload list.
- “user”: module(s) to remove from autotoload system are only searched in the “user” autoload list.
:
atomsAutoloadDel remove one or several modules from the autoload system.
`atomsRepositoryAdd`_('http://scene1.test.atoms.scilab.org');
`atomsInstall`_("toolbox_5","user");
`atomsAutoloadList`_()
atomsAutoloadDel("toolbox_5");
`atomsAutoloadList`_()
`atomsAutoloadAdd`_(["toolbox_5" "1.0" "user"],"user");
`atomsAutoloadList`_()
atomsAutoloadDel(["toolbox_5" "1.0"]);
`atomsAutoloadList`_()
`atomsAutoloadAdd`_(["toolbox_5" "1.0" "user"],"user");
`atomsAutoloadList`_()
atomsAutoloadDel(["toolbox_5" "1.0" "user"]);
`atomsAutoloadList`_()
`atomsAutoloadAdd`_(["toolbox_5" "1.0" "user"],"user");
`atomsAutoloadList`_()
atomsAutoloadDel(["toolbox_5" "1.0" "user"],"user");
`atomsAutoloadList`_()
`atomsRemove`_("toolbox_5","user");
`atomsRepositoryDel`_('http://scene1.test.atoms.scilab.org');