回答編集履歴
1
コマンドライン修正
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
```
|
1
|
+
```AWK
|
2
2
|
#!/usr/bin/awk -f
|
3
3
|
function registerStation(station, stationIndex) {
|
4
4
|
for (stationIndex = 0; stationIndex < stationCount; stationIndex++) {
|
@@ -31,6 +31,6 @@
|
|
31
31
|
```
|
32
32
|
|
33
33
|
```bash
|
34
|
-
chmod a+x joinStationList.awk
|
34
|
+
chmod a+x joinStationList.awk # 上記ファイル
|
35
|
-
|
35
|
+
./joinStationList.awk data2.csv data1.csv > data3.csv
|
36
36
|
```
|