Skip to content
Snippets Groups Projects

Implement DEM and many other features

Merged Rafael Ravedutti Lucio Machado requested to merge dem into master
109 files
+ 175170
132616
Compare changes
  • Side-by-side
  • Inline
Files
109
data/add_flags.sh 0 → 100644
+ 13
0
#!/bin/bash
count=0
# iterate over each remaining line in the file
while IFS= read -r line; do
if [ $count -gt 0 ]; then
printf "%s,0\n" "$line"
else
printf "%s\n" "$line"
fi
count=$((count + 1))
done < "$1"
Loading