OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
go
/
doc
/
comment
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
doc.go
1.27 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
html.go
3.46 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
markdown.go
4.44 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
mkstd.sh
768 bytes
12/01/2022 06:12:58 PM
rwxr-xr-x
📄
old_test.go
2.93 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
parse.go
33.73 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
parse_test.go
284 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
print.go
7.63 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
std.go
611 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📄
std_test.go
829 bytes
12/01/2022 06:12:58 PM
rw-r--r--
📁
testdata
-
12/01/2022 06:13:56 PM
rwxr-xr-x
📄
testdata_test.go
4.47 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
text.go
8.8 KB
12/01/2022 06:12:58 PM
rw-r--r--
📄
wrap_test.go
3.72 KB
12/01/2022 06:12:58 PM
rw-r--r--
Editing: mkstd.sh
Close
#!/bin/bash # Copyright 2022 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. # This could be a good use for embed but go/doc/comment # is built into the bootstrap go command, so it can't use embed. # Also not using embed lets us emit a string array directly # and avoid init-time work. ( echo "// Copyright 2022 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. // Code generated by 'go generate' DO NOT EDIT. //go:generate ./mkstd.sh package comment var stdPkgs = []string{" go list std | grep -v / | sort | sed 's/.*/"&",/' echo "}" ) | gofmt >std.go.tmp && mv std.go.tmp std.go