From c694902964404276991f6d114e5fc66a6244cdee Mon Sep 17 00:00:00 2001 From: SunXingwei Date: Fri, 6 Sep 2024 16:06:12 +0800 Subject: [PATCH] fix awk command for tsv file creation in README (#8) Co-authored-by: sunxingwei --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 538ba50..8373204 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ wavlist_to_tar your_data.tsv shards/ Creating `your_data.tsv` is simple: ```bash -find data -type f | awk 'BEGIN{"filename"}{print}' > your_data.tsv +find data -type f | awk 'BEGIN{print "filename"} {print}' > your_data.tsv ``` ### 3.2 Training from source