5 lines
67 B
Bash
5 lines
67 B
Bash
#!/bin/bash
|
|
|
|
mv train.csv temp.csv
|
|
head -n $1 temp.csv > train.csv
|