mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
893 B
57 lines
893 B
package main |
|
|
|
import ( |
|
"flag" |
|
"fmt" |
|
"os" |
|
) |
|
|
|
const ( |
|
success = iota |
|
failure |
|
) |
|
|
|
var status = success |
|
|
|
func notNil(err error) bool { |
|
if err != nil { |
|
status = failure |
|
fmt.Fprintln(os.Stderr, err) |
|
return true |
|
} |
|
return false |
|
} |
|
func main() { |
|
var bytes int64 |
|
flag.Int64Var(&bytes, "c", 0, "output the last NUM bytes") |
|
flag.Parse() |
|
filenames := flag.Args() |
|
for i, filename := range filenames { |
|
file, err := os.Open(filename) |
|
if notNil(err) { |
|
continue |
|
} |
|
defer file.Close() |
|
fileInfo, err := file.Stat() |
|
if notNil(err) { |
|
continue |
|
} |
|
offset := fileInfo.Size() - bytes |
|
if offset < 0 { |
|
offset = 0 |
|
} |
|
b := make([]byte, fileInfo.Size()-offset) |
|
_, err = file.ReadAt(b, offset) |
|
if notNil(err) { |
|
continue |
|
} |
|
if len(filenames) > 1 { |
|
if i > 0 { |
|
fmt.Println() |
|
} |
|
fmt.Println("==>", filename, "<==") |
|
} |
|
os.Stdout.Write(b) |
|
} |
|
os.Exit(status) |
|
}
|
|
|