$ uname -a
Darwin Rosie.local 23.5.0 Darwin Kernel Version 23.5.0: Wed May  1 20:16:51 PDT 
2024; root:xnu-10063.121.3~5/RELEASE_ARM64_T8103 arm64

$ locale
LANG="en_AU.UTF-8"
LC_COLLATE="en_AU.UTF-8"
LC_CTYPE="en_AU.UTF-8"
LC_MESSAGES="en_AU.UTF-8"
LC_MONETARY="en_AU.UTF-8"
LC_NUMERIC="en_AU.UTF-8"
LC_TIME="en_AU.UTF-8"
LC_ALL="en_AU.UTF-8”

$ perl --version

This is perl 5, version 34, subversion 3 (v5.34.3) built for 
darwin-thread-multi-2level

$ cat print_file
#!/usr/bin/perl -n
while (<>) {
    print "$. $_";
}
exit;

$ print_file /tmp/orgs2
2
3     DevHub  CCIDevHub             p...@wise-unicorn-b55zcn.com    
00DdM000003155ZUAQ Connected
4   DevHub  DevHub                p...@salesforce.dev             
00DW2000000afcXMAQ Connected
5     DevHub  DevHub2               p...@nocompany.com              
00DdL000000IZqeUAG Connected
6     DevHub  LightningAppTest      p...@cunning-goat-fbfy9x.com    
00DdM000006N6TaUAK Connected
7     DevHub  PackageTestPlayground p...@curious-unicorn-2ojijy.com 
00DdM000005tVl5UAE Connected
8     Scratch 201-3-4               test-0jryu1n6t...@example.com  
00DFf000000TjmXMAS Active    2024-07-15
9   Scratch AppTest1-S1           test-bsq9w2vg2...@example.com  
00DHF000000RGNG2A4 Active    2024-07-18
10

$ wc -l /tmp/orgs2
      10 /tmp/orgs2

$ cat /tmp/orgs2
    Type    Alias                 Username                       Org ID         
    Status    Expires

    DevHub  CCIDevHub             p...@wise-unicorn-b55zcn.com    
00DdM000003155ZUAQ Connected
  DevHub  DevHub                p...@salesforce.dev             
00DW2000000afcXMAQ Connected
    DevHub  DevHub2               p...@nocompany.com              
00DdL000000IZqeUAG Connected
    DevHub  LightningAppTest      p...@cunning-goat-fbfy9x.com    
00DdM000006N6TaUAK Connected
    DevHub  PackageTestPlayground p...@curious-unicorn-2ojijy.com 
00DdM000005tVl5UAE Connected
    Scratch 201-3-4               test-0jryu1n6t...@example.com  
00DFf000000TjmXMAS Active    2024-07-15
  Scratch AppTest1-S1           test-bsq9w2vg2...@example.com  
00DHF000000RGNG2A4 Active    2024-07-18

$

What happened to line 1?

—
Peter West
p...@pbw.id.au
`“Mary.” She turned and said to him in Aramaic, “Rabboni!”`


--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to