Added script to auto-check the first unchecked checkbox in README.md

This commit is contained in:
Mariano Riefolo 2024-08-06 16:36:18 +02:00
parent 227f30f378
commit c107af7217

6
solve Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
regex="white_large_square"
file="README.md"
sed -i "0,/${regex}/s//white_check_mark/" "$file"