Add a formatting script.

migration
Philippe PITTOLI 2024-06-08 23:23:05 +02:00
parent 925a456de7
commit cb8b0c93a1
1 changed files with 30 additions and 0 deletions

30
bin/format.awk Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/awk -f
BEGIN {
data = ""
}
/^\[/ || /^\]/ {
print "oups"
next
}
/^ {/ && /},$/ {
print $0
next
}
/^ {/ {
data = $0
next
}
/},$/ {
data = sprintf("%s %s", data, $0)
print data
next
}
{
data = sprintf("%s %s", data, $0)
}