commit b501f1d9144a3f3d2dc0afb91d96bc612fb8b6b9 from: Alex Arx via: Alex Arch date: Sun Mar 16 08:11:35 2025 UTC get rid of the -Nn flags, be smart about removing/adding newlines commit - 4851eeb93b663c97ff3884a93d36bdc6e77fe73e commit + b501f1d9144a3f3d2dc0afb91d96bc612fb8b6b9 blob - 68d79c963f04d9b580bdc76e05ba6245fea11974 blob + c78f78602562e188f4aaca934e7b1e380ba4f7f1 --- secstore +++ secstore @@ -68,14 +68,14 @@ sub prunetree { # Encrypt the secret from stdin, and store the ciphertext in file specified # on the command line. sub secstore_add { - our ($opt_N, $opt_f, $opt_n) = (0, 0, 0); + our $opt_f = 0; my ($cmd, $sec) = ($ENV{SECSTORE_ENCCMD} // 'gpg -e --', ''); local *usage = sub { - die "usage: secstore add [-Nfn] name\n"; + die "usage: secstore add [-f] name\n"; }; - getopts('Nfn') && scalar(@ARGV) == 1 or usage(); + getopts('f') && scalar(@ARGV) == 1 or usage(); my $outfile = $ARGV[0]; ckpath $outfile or die "bad path: $outfile\n"; @@ -93,10 +93,8 @@ sub secstore_add { print "Repeat:"; my $sec2 = ; print "\n"; - if ($opt_n && !$opt_N) { - chomp $sec; - chomp $sec2; - } + chomp $sec; + chomp $sec2; system "stty echo"; close TTY; @@ -106,6 +104,7 @@ sub secstore_add { while () { $sec .= $_; } } + $sec .= "\n" if $sec !~ tr/\n$//; my $pid = open2(my $reader, my $writer, $cmd); print $writer $sec; undef $sec; @@ -248,7 +247,7 @@ sub secstore_remove { # get: decrypt file, and return plaintext. sub get { - my ($Nflag, $nflag, $file) = @_; + my $file = shift; my $cmd = $ENV{SECSTORE_DECCMD} // "gpg -dq --"; ckpath $file or die "bad path: $file\n"; @@ -263,19 +262,17 @@ sub get { while (<$cmdreader>) { $out .= $_; } waitpid $pid, 0; $? == 0 or exit 1; - chomp($out) if ($nflag && !$Nflag); return $out; } # secstore_print: decrypt file, and print plaintext to stdout. sub secstore_print { - our ($opt_N, $opt_n); local *usage = sub { - die "usage: secstore print [-Nn] name ..."; + die "usage: secstore print name ..."; }; - getopts('Nn') && scalar(@ARGV) == 1 or usage(); - print(get($opt_N, $opt_n, $ARGV[0])); + scalar(@ARGV) == 1 or usage(); + print(get($ARGV[0])); } # copy: decrypt file, and copy to SECSTORE_COPY_INCMD, delete with @@ -284,18 +281,18 @@ sub secstore_copy { our ($opt_N, $opt_n, $opt_d, $opt_i, $opt_o, $opt_s); local *usage = sub { die -"usage: secstore copy [-Nn] [-d delcmd] [-i incmd] [-o outcmd] [-s sleeptime]\n" . -" name\n" +"usage: secstore copy [-d delcmd] [-i incmd] [-o outcmd] [-s sleeptime] name\n" }; - getopts('Nnd:i:o:s:') && scalar(@ARGV) == 1 or usage(); + getopts('d:i:o:s:') && scalar(@ARGV) == 1 or usage(); my $delcmd = $opt_d // $ENV{SECSTORE_COPY_DELCMD} // "xclip