Link to home
Start Free TrialLog in
Avatar of redneon
redneon

asked on

Perl Mass File Edit

I'm wanting a program which will add a single line to the beginning of every .html recursively in a directory (and every directory below it). I'm assuming the best way to do this would be to use perl but I'm not sure where to start. Can someone point me in the right direction?

Cheers,

Darrell
Avatar of Tintin
Tintin

You can use Perl, however, if you are on a Unix system, it's easier to use a shell script.

Assume you have the line to add in a file called /tmp/newline, then do

#!/bin/sh
for file in `find /dir/with/htmlpages -name "*.html"`
do
   echo "Amending $file"
   cat /tmp/newline $file >/tmp/$$ && mv /tmp/$$ $file
done
ASKER CERTIFIED SOLUTION
Avatar of kandura
kandura

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
**WARNING - Do not cut and paste this code, read entire response before attempting.

The following one-liner will insert 'INSERT THIS LINE' on the first line of every .html file under the current directory:

perl -MFile::Find -we'find sub { /\.html$/ && do { push @ARGV, $File::Find::name;}}, ".";  $^I=".bak"; while (<>) { print "INSERT THIS LINE\n" if $. == 1; print;} continue { close ARGV if eof; }'

Broken down:

-MFile::Find <-- use the 'File::Find' module
-we <-- Enable warnings and 'execute' the following perl block

# Code block:
find  sub { /\.html$/ && do { push @ARGV, $File::Find::Name; }}, ".";
# use the 'find' subroutine from 'File::Find' and
# pass it a subroutine reference as the first argument that
# will be executed for every file found. In this case, pushes the full path names
# of all '.html' files into the @ARGV array. The regex condition will be matched
# against the 'current found file'. (IE: it will iterate over every file under the
# pathname given (explained below) and copy the result to $_;
#
# The second argument to find (".") is the directory to start the 'find' routine in.
# In this case, the current directory. This will work recursively.


$^I=".bak";
# Turn on 'edit in place' and back up edited files with the '.bak' extension

while (<>) { print "INSERT THIS LINE.\n" if $. == 1; print; } continue { close ARGV if eof; }
# iterate over all of the files in @ARGV and edit them in place
# If $. (The line number of the current file) is '1', print out "INSERT THIS LINE\n"
# print the current line.
# All 'prints', regexes, operations on '$_' will be direct edits to the file.
# the continue block ensures that the current file is closed when finished editing
# and therefore resets the line numbering ($.) mechanism for each file.
#
# end code

This is both a very powerful and very dangerous routine. This WILL edit things in place and you should not use it unless you understand what it's doing and how. You could very easily edit/overwrite/destroy all kinds of things you don't want to. This will back up any files it edits in a file with the same name and the '.bak' extension but if you happen to run the same (wrong) command twice, your changes will be lost.

BE CAREFUL :)

Do not just cut and paste this and expect it to do what you want. Any questions or requests for explanation welcome.

Thanks
Matt
Same one-liner in a standalone script 'edit.pl':

#!/usr/bin/perl

use warnings;
use strict;
use File::Find;

find \&wanted, ".";
$^I=".bak";

while (<>) {
        print "INSERT THIS LINE\n" if $. == 1;
        print;
} continue { close ARGV if eof; }

sub wanted {
        /\.html$/ && do {
                push @ARGV, $File::Find::name;
        }
}
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial