mirror of
https://github.com/golang/go
synced 2024-11-11 23:50:22 -07:00
d79b17e60a
no (optional) UTF-8 marker present. SVN=113931
10 lines
208 B
Bash
Executable File
10 lines
208 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
|
|
GO=$1
|
|
for f in *.go; do
|
|
$GO $f
|
|
done
|