##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September, 2016 # Modified: 2016-10-03/22:39-0400 ##+ # # chown.icn, Demonstrate chown, the file ownership function # procedure main() file := "chown.icn" # Change owner/group of file, usually only superusers can do this # so expect failure of this sample, file will remain owned by btiffin write(image(chown(file, "nobody", "nobody"))) write("Owner of ", file, " ", stat(file).uid) end