9 lines
209 B
Bash
Executable File
9 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
# Author : Ismael Barros² <ismael@barros2.org>
|
|
# License : BSD http://en.wikipedia.org/wiki/BSD_license
|
|
|
|
for i in usr opt; do
|
|
sed -i -e "s|/${i}/|././/|g" $@
|
|
sed -i -e "s|/${i}$|././|g" $@
|
|
done
|