Get the mappings from tex file for vim plugins

2010-04-12 127 words 1 min read

Get the mappings from tex file for the vim plugins.

#!/bin/bash –
#===============================================================================

#          FILE:  get_mappings_from_tex_for_vim.sh

#         USAGE:  ./get_mappings_from_tex_for_vim.sh

#   DESCRIPTION:  Get the mappings from tex file

#       OPTIONS:  —
#  REQUIREMENTS:  —
#          BUGS:  —
#         NOTES:  —
#        AUTHOR:  Amit Agarwal (AKA), amit.agarwal@amit-agarwal.co.in
#       COMPANY:  Individual
#       VERSION:  1.0
#       CREATED:  09/06/2009 09:19:19 PM IST
#      REVISION:  —
#===============================================================================

set -o nounset                              # Treat unset variables as an error

file=$1
IFS=$(echo -e ’\n’)
for i in $(cat $file |grep ”^..line”)
do
#echo $i |awk -F”’” '{print $2” ” $3” ”$4}’|awk -F”&” '{print $1” ”$2}’
echo $i |awk -F”’” '{
if ( NF >= 4 )
{
print ($2”\t ->”$4”\t==»”$NF);
}
else
{
print($2”\t–>”$3);
}
fi
}’  |sed ’s/\h.*(/(/’ |sed ’s/>.*&/>/’ |sed ’s/\t*-.>$//’ |sed ’s/\//’

done


author

Authored By Amit Agarwal

Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.

We notice you're using an adblocker. If you like our webite please keep us running by whitelisting this site in your ad blocker. We’re serving quality, related ads only. Thank you!

I've whitelisted your website.

Not now
This website uses cookies to ensure you get the best experience on our website. Learn more Got it