endhostent

gethostent によって開かれた hosts ファイルを閉じる

構文

解説

endhostent は、gethostent によって開かれた hosts ファイルを閉じます。

次のサンプルコードは、gethostent を使って hosts ファイルに登録されたホスト名を抽出したのち、endhostent を使って hosts ファイルを閉じます。

while ( my $name = gethostent ) {
    print $name, "\n";
}
endhostent;

なお、endhostent は Windows では機能しませんので注意してください。