mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-11 04:19:42 +00:00
7 lines
314 B
Bash
Executable File
7 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
find . -name "*.html" -print0 | while IFS= read -r -d '' file
|
|
do
|
|
echo $file
|
|
sed -e 's|<li><a href=".*" target="_top">Frames</a></li>||g' $file > $file.tmp && mv $file.tmp $file
|
|
sed -e 's|<li><a href=".*" target="_top">No Frames</a></li>||g' $file > $file.tmp && mv $file.tmp $file
|
|
done |