Permalink
Cannot retrieve contributors at this time
data_mining_gan/mkdataset/class_data/csv/clean.sh
Go to file#!/bin/sh | |
for file in *.csv; | |
do | |
# removed_comments="${file}_no_comments" | |
grep -v "#" -F $file > clean_csv/$file | |
# num_lines=$(wc -l $removed_comments | awk '{print $1}') | |
# less_lines=$(($num_lines-4)) | |
# tail $removed_comments | |
# head -n $less_lines $removed_comments | tail | |
# echo "" | |
# echo "" | |
done |