usr
/
local
/
cpanel
/
scripts
➕ New
📤 Upload
✎ Editing:
listsubdomains
← Back
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/listsubdomains Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use strict; use Cpanel::Config::LoadUserOwners (); use Cpanel::Config::userdata (); my $user = $ARGV[0]; if ( !defined $user ) { &usage; } my @users = ($user); # Case 41981: For resellers, add their client users' accounts my %OWNER; Cpanel::Config::LoadUserOwners::loadtrueuserowners( \%OWNER, 1, 1 ); push @users, ( grep { $OWNER{$_} eq $users[0] && $_ ne $users[0] } keys(%OWNER) ); foreach $user (@users) { print $user, ":\n"; my $subdomains_hr = Cpanel::Config::userdata::load_user_subdomains($user); for my $subdomain ( keys %$subdomains_hr ) { print "\t", $subdomain, "\n"; } } sub usage { print <<EO_USAGE; Usage: listsubdomains user EO_USAGE exit 0; }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel