Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pairs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
software
pairs
Merge requests
!1
Implement DEM and many other features
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implement DEM and many other features
dem
into
master
Overview
1
Commits
83
Pipelines
0
Changes
109
Merged
Rafael Ravedutti Lucio Machado
requested to merge
dem
into
master
1 year ago
Overview
1
Commits
83
Pipelines
0
Changes
109
Expand
Created by: rafaelravedutti
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b6b9596a
83 commits,
1 year ago
109 files
+
175170
−
132616
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
109
Search (e.g. *.vue) (Ctrl+P)
data/add_flags.sh
0 → 100644
+
13
−
0
Options
#!/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