git @ Cat's Eye Technologies Dipple / master perl / pcopy
master

Tree @master (Download .tar.gz)

pcopy @masterraw · history · blame

#!/usr/bin/perl

# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

$fn = $ARGV[0];
$fn =~ s/^\.\///g;
$fn =~ s/\//_/g;
system "cp -Rp \"$ARGV[0]\" \"$fn\"";