Consider this:
cat > mytestfile.txt <<'EOF'
"'iceberg'"
"'ice cliff'"
"'ice field'"
"'inlet'"
"'island'"
"'islet'"
"'isthmus'"
EOF
perl -dpi -e 's/ice/dice/' mytestfile.txt
When the debugger runs, I try to add an action to print $_
, but:
$ perl -dpi -e 's/ice/dice/' mytestfile.txt
Loading DB routines from perl5db.pl version 1.39_10
Editor support available.
Enter h or 'h h' for help, or 'man perldebug' for more help.
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
DB<1> n
main::(-e:1): s/ice/dice/
DB<1> n
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
DB<1> print $_
DB<2> n
main::(-e:1): s/ice/dice/
DB<2> print $_
DB<3> n
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
DB<3> p $_
"'ddiceberg'"
DB<4> print "$_"
...
DB<1> a 0 print "$_";
DB<2> L
DB<3> L a
DB<4> n
...
DB<6> a 1 print "$_"
DB<7> L a
-e:
1: s/ice/dice/
action: print "$_"
DB<8> n
main::(-e:1): s/ice/dice/
DB<8> n
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
DB<8> n
main::(-e:1): s/ice/dice/
DB<8> n
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
DB<8> n
...
DB<8> a 1 p $_
DB<9> L a
-e:
1: s/ice/dice/
action: p $_
DB<10> n
main::(-e:1): s/ice/dice/
Can't locate object method "p" via package " "'ice cliff'"
" (perhaps you forgot to load " "'ice cliff'"
"?) at (eval 13)[/usr/share/perl/5.18/perl5db.pl:732] line 1, <> line 3.
DB<10> n
main::(-e:0): BEGIN { require 'perl5db.pl' };LINE: while (<>) {
Can't locate object method "p" via package " "'dice cliff'"
" (perhaps you forgot to load " "'dice cliff'"
"?) at (eval 14)[/usr/share/perl/5.18/perl5db.pl:732] line 1, <> line 3.
... there are problems:
- If I do
print $_
, I get an empty string - if I dop $_
, I do get an actual printout of the variable - I cannot add an action on line 0
- On line 1, the action executes - but it doesn't look like it if
print $_
is used as the action, since as mentioned it returns empty string; butp $_
even if it prints in interactive mode, it raises an error when used as an action.
So how can I have something like "dollar-underscore" $_
printed each loop as an action of a debugged -pie
script?
Got it via How to run `x` command within a < action in the perl debugger?, it's
{ p $_
: