mm(1): rewritten in Rust #143

Closed
emma wants to merge 12 commits from mm-rs into main
Showing only changes of commit 004d2daa14 - Show all commits

View File

@ -98,7 +98,7 @@ fn main() -> ExitCode {
}
let options = File::options()
/* truncate if -t is specified and append if -a is specified */
/* dont truncate if -t is specified, append if -a is specified */
.truncate(t)
.append(a)
/* enable the ability to create and write to files */