/opt/cpanel/ea-nodejs22
NameSizeModeActions
bin/-0755rm
include/-0755rm
lib/-0755rm
share/-0755rm
CHANGELOG.md8726640644editdlrm
LICENSE1454850644editdlrm
README.md424510644editdlrm
remove_pwsh.pl2560644editdlrm
Edit: /opt/cpanel/ea-nodejs22/remove_pwsh.pl (256B)
use strict; use warnings; my @files = split (/\n/, `find . -type f -print`); foreach my $file (@files) { my $first_line = `head -n 1 $file`; if ($first_line =~ m/env\s+pwsh/) { print "Removing file $file\n"; unlink $file; } }