summaryrefslogtreecommitdiff
path: root/bin/auto_ptr.perl
blob: 01d1cb5e754bc860a637d5e264fc90f94b422299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/pkg/gnu/bin/perl -pi
#
#
# You may want to run the "find" command with this script, which maybe something like this:
#
# find . -type f \( -name "*.i" -o -name "*.h" -o -name "*.C" -o -name "*.cc" -o -name "*.c" -o -name "*.cpp" -o -name "*.hpp" -o -name "*.ipp" \) -print | xargs $ACE_ROOT/bin/auto_ptr.perl
#
# And if your perl installation isn't in /pkg/gnu/bin/perl, 
# please make the change accordingly
#
#
s/auto_basic_ptr/ACE_Auto_Basic_Ptr/g;
s/auto_basic_array_ptr/ACE_Auto_Basic_Array_Ptr/g;
s/auto_array_ptr/ACE_Auto_Array_Ptr/g;