4 lines
177 B
Bash
4 lines
177 B
Bash
|
#!/bin/bash
|
||
|
sed 's#http.*://oer.community/wp-content/uploads/.*/##g' $1
|
||
|
|
||
|
# Aufruf z. B. durch `$ sb/scripts/replace-absolute-path-by-relative.sh sb/content/hello-world/index.md`
|