mirror of
https://github.com/golang/go
synced 2024-11-20 11:04:56 -07:00
c45d2a767c
fixed everything except the tutorial. R=rsc DELTA=404 (94 added, 139 deleted, 171 changed) OCL=22414 CL=22422
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"os";
|
|
"io";
|
|
"flag";
|
|
"fmt";
|
|
"tabwriter";
|
|
)
|
|
|
|
|
|
var (
|
|
tabwidth = flag.Int("tabwidth", 4, "tab width");
|
|
usetabs = flag.Bool("usetabs", false, "align with tabs instead of blanks");
|
|
)
|
|
|
|
|
|
func Error(format string, params ...) {
|
|
fmt.printf(format, params);
|
|
sys.exit(1);
|
|
}
|
|
|
|
|
|
func Untab(name string, src *os.FD, dst *tabwriter.Writer) {
|
|
n, err := io.Copy(src, dst);
|
|
if err != nil {
|
|
Error("error while processing %s (%v)", name, err);
|
|
}
|
|
//dst.Flush();
|
|
}
|
|
|
|
|
|
func main() {
|
|
flag.Parse();
|
|
padchar := byte(' ');
|
|
if *usetabs {
|
|
padchar = '\t';
|
|
}
|
|
dst := tabwriter.New(os.Stdout, *tabwidth, 1, padchar, true, false);
|
|
if flag.NArg() > 0 {
|
|
for i := 0; i < flag.NArg(); i++ {
|
|
name := flag.Arg(i);
|
|
src, err := os.Open(name, os.O_RDONLY, 0);
|
|
if err != nil {
|
|
Error("could not open %s (%v)\n", name, err);
|
|
}
|
|
Untab(name, src, dst);
|
|
src.Close(); // ignore errors
|
|
}
|
|
} else {
|
|
// no files => use stdin
|
|
Untab("/dev/stdin", os.Stdin, dst);
|
|
}
|
|
}
|