PortableLinuxGames/patchAbsolutePaths

9 lines
209 B
Plaintext
Raw Normal View History

2013-03-06 14:54:22 -08:00
#!/bin/bash
2013-04-14 05:05:22 -07:00
# Author : Ismael Barros² <ismael@barros2.org>
# License : BSD http://en.wikipedia.org/wiki/BSD_license
2013-03-06 14:54:22 -08:00
2013-03-31 04:38:39 -07:00
for i in usr opt; do
sed -i -e "s|/${i}/|././/|g" $@
sed -i -e "s|/${i}$|././|g" $@
done