3 lines
77 B
Bash
Executable file
3 lines
77 B
Bash
Executable file
#!/bin/bash
|
|
find . -type f -name "en.md" -exec sed -i '' "/^image:/d" {} +
|
|
|