feat: Désactivation de librairies obsolettes

This commit is contained in:
Xavier Logerais
2024-06-28 10:28:18 +00:00
parent a6905b9489
commit 268ad94470
4 changed files with 0 additions and 0 deletions

16
libs.deprecated/ldif.bash Normal file
View File

@ -0,0 +1,16 @@
#!/bin/bash
function ldifparse ()
{
awk 'length > 79 {
n=1
while ( length($0) > 78 + n ) {
printf "%s\n ", substr($0,1,78 + n)
$0 = substr($0,79 + n)
n=0
}
if (length) print
next
}
{print}' "$FILE"
}