OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [insight/] [tix/] [tools/] [setcolon.sh] - Rev 1782

Go to most recent revision | Compare with Previous | Blame | View Log

#!/bin/sh
#
# setcolon.sh --
#
#
# This program replaces all occurrences of :: in a file to :. It can
# be used to convert Tix mega widget classes to use the new convention
# of the single colon qualifier in method names.
#
# *Use with caution*. You may not want to replace all double colons in
# your program with single colons. The following is the entire
# program. Please examine carefully before execution.
#
# Copyright (c) 1996, Expert Interface Technologies
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 
 
if test "$*" = ""; then
    echo Usage: $0 file [files ...]
    echo
    cat $0
    exit
fi
 
for i in $*; 
do
    echo "modifying $i";
    sed -e 's|::|:|' $i > $i.tmp;
    mv $i.tmp $i;
done;
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.