mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
38 lines
676 B
Go
38 lines
676 B
Go
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
buf := make([]byte, 4096)
|
|
var err error
|
|
for err == nil {
|
|
n, err := io.ReadFull(os.Stdin, buf)
|
|
if n > 0 {
|
|
buf = buf[:n]
|
|
repl := bytes.Replace(buf, []byte("\n"), []byte("\r\n"), -1)
|
|
_, err = os.Stdout.Write(repl)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
if err == io.EOF {
|
|
return
|
|
}
|
|
buf = buf[:cap(buf)]
|
|
}
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|