Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
@rem = '--*-Perl-*-- @pushd . @pushd > "%TEMP%\editd.txt" @if defined VISUAL call "%VISUAL%" "%TEMP%\editd.txt" @if not defined VISUAL notepad "%TEMP%\editd.txt" @echo - >> "%~f0" @pushd >> "%~f0" @popd @perl -x "%~f0" "%TEMP%\editd.txt" @if NOT "%OS%" == "Windows_NT" goto endofperl @if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl @if %errorlevel% == 9009 echo You do not have Perl in your PATH. @if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul @goto endofperl @rem '; #!/usr/bin/perl -w #line 17 use strict; main( @ARGV ); exit( 0 ); sub main { my( $file )= @_; my $start= tell(DATA) or die "Can't tell(DATA): $!"; open DATA, "+< $0" or die "Can't read self ($0): $!\n"; seek( DATA, $start, 0 ) or die "Can't fseek(DATA,$start,0): $!"; die "Expected :endofperl after __END__ of $0.\n" unless <DATA> =~ /^\s*:endofperl\s*$/i; $start= tell(DATA) or die "Can't tell(DATA): $!"; my @curr; while( <DATA> ) { if( /^\s*-\s*$/ ) { @curr= (); } else { chomp; unshift @curr, $_; } } open USER, "< $file" or die "Can't read $file: $!\n"; my @user= reverse <USER>; chomp @user; close USER; while( @curr && @user && $curr[0] eq $user[0] ) { shift @curr; shift @user; } seek( DATA, $start, 0 ) or die "Can't fseek(DATA,$start,0): $!"; for( @curr ) { print DATA "popd\n"; } for my $dir ( @user ) { print DATA qq{pushd "$dir"\n}; } print DATA "pushd\n"; truncate DATA, tell(DATA); } __END__ :endofperl

In reply to editd by tye

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-19 14:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found