3 # aliasconv.sh - convert csh aliases to bash aliases and functions
10 trap 'rm -f $TMPFILE' 0 1 2 3 6 15
11 TMPFILE
=$
(mktemp
-t cb.XXXXXX
) ||
exit 1
18 '') echo alias ${1}="''" ;;
20 comm=`echo $2 | sed 's/\\!\*/"$\@"/g
21 s/\\!:\([1-9]\)/"$\1"/g
23 echo $1 \
(\
) "{" command "$comm" "; }"
25 *) echo alias ${1}=\'`echo "${2}" | sed "s:':'\\\\\\\\'':"`\' ;;
30 # the first thing we want to do is to protect single quotes in the alias,
31 # since they whole thing is going to be surrounded by single quotes when
34 sed -e "s:':\\'\\\'\\':" -e "s/^\([a-zA-Z0-9_-]*\)$T\(.*\)$/mkalias \1 '\2'/" >>$TMPFILE
36 sh
$TMPFILE |
sed -e 's/\$cwd/\$PWD/g' \
37 -e 's/\$term/\$TERM/g' \
38 -e 's/\$home/\$HOME/g' \
39 -e 's/\$user/\$USER/g' \
40 -e 's/\$prompt/\$PS1/g'