7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
regex="white_large_square"
|
|
file="README.md"
|
|
|
|
sed -i "0,/${regex}/s//white_check_mark/" "$file"
|