Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
######################
# Set Error Trapping #
######################
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);
use warnings;
use strict;
my @files = glob('full_path_to_files_directory/*');
for(@files){
open(CATAL, "+<$_");
flock(CATAL, 2);
binmode(CATAL);
my $file = <CATAL>;
$file =~ s/oldnumber/newnumber/g;
truncate(CATAL, length($file));
seek(CATAL, 0, 0);
print CATAL "$file";
close(CATAL);
}
print "Replace Complete!";
exit();
cd xmldir
grep -R 123-456-789 *
grep xxx-xxx-xxxx /dir/*.*
sed -e 's/xxx-xxx-xxxx/123-456-7890/g' filename