Mwnci issticky() Function

Syntax

issticky(string)

Description

The issticky() function returns true if the path points to a file that has the sticky bit set for file permissions

Example

include("file")
println(issticky("/tmp"))
println(issticky("/bin"))

true
false