Skip to content
Snippets Groups Projects
Commit 9f9a0bb1 authored by Marco Del Tufo's avatar Marco Del Tufo
Browse files

.

parent a916d243
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
#!/bin/bash
i=1
line_number=1
while read -r line
do
if [[ $line == '```'* ]]
then
if [[ $(($i % 2)) -ne 0 ]]
then
echo "${line_number}: ${line}"
#sed -i "${line_number}s/bashbash/bash/" ./${1}
#sed -i "${line_number}s/\`\`\`/\`\`\`bash/" ./${1}
fi
i=$((i+1))
fi
line_number=$((line_number+1))
done < $1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment