getSkillPath
getSkillPath(
)
=> l_strings / nil
Description
Returns the current SKILL path. The SKILL path is used in resolving relative paths for some SKILL functions.
Arguments
Value Returned
|
Directory paths from the current SKILL path setting. The result is a list where each element is a path component as specified by |
|
Examples
setSkillPath('("." "~" "~/cpu/test1"))
=> ("~/cpu/test1")
getSkillPath()
=> ("." "~" "~/cpu/test1")
The example below shows how to add a directory to the beginning of your search path (assuming a directory “~/lib”).
setSkillPath(cons("~/lib" getSkillPath()))
=> ("~/lib" "~/cpu/test1")
getSkillPath()
=> ("~/lib" "." "~" "~/cpu/test1")
Related Topics
Return to top