RosettaCodeData/Task/Write-entire-file/AppleScript/write-entire-file.applescript

7 lines
159 B
AppleScript
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
on overwrite(filepath, str)
set fp to open for access file filepath with write permission
set eof of fp to 0
write str to fp
close access fp
end overwrite