mirror of
https://github.com/golang/go
synced 2024-11-26 01:37:58 -07:00
41d34e2451
SVN=113864
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
# 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.
|
|
|
|
#!/bin/bash
|
|
for f in *.go; do
|
|
go $f
|
|
done
|