logo

deblob

remove binary executables from a directory git clone https://anongit.hacktivis.me/git/deblob.git/

perl_storage.pm (252B)


  1. #!/usr/bin/env perl
  2. # SPDX-FileCopyrightText: 2019 deblob Authors <https://hacktivis.me/projects/deblob>
  3. # SPDX-License-Identifier: BSD-3-Clause
  4. use Storable qw(store);
  5. @users = ['Alice', 'Bob', 'Eve'];
  6. store(\@users, 'perl_storage.pst') or die $!;