Pini Reznik [off-list ref] writes:
This required to be able to use syntax highlighting in meld during
conflicts resolution....
+ extension=`echo $path | awk -F \. '{print $NF}'`
+ BACKUP="$path.BACKUP.$$.${extension}"
+ LOCAL="$path.LOCAL.$$.${extension}"
+ REMOTE="$path.REMOTE.$$.${extension}"
+ BASE="$path.BASE.$$.${extension}"
I had to wonder what would happen in these cases:
* path = "a/b/c/d"
* path = "a/b.c/d"
I also think spawning awk for this is way overkill.