Compare commits

...

9 Commits

Author SHA1 Message Date
Peter J. Holzer 3aee99f7f6 Add option --separator 2024-01-18 10:33:49 +01:00
Peter J. Holzer 1efa5739d9 Merge branch 'master' of github.com:hjp/simple 2022-09-02 21:00:33 +02:00
Peter J. Holzer 4a7fea8945 Add hours buckets 2022-09-02 20:59:08 +02:00
Peter J. Holzer 3a0ee630ed Make fqdn more resilient and more polite 2022-08-11 15:47:21 +02:00
Peter J. Holzer ca9306318b Fix warning 2022-08-11 15:46:13 +02:00
Peter J. Holzer 3a5268c37a Merge branch 'master' of github.com:hjp/simple 2021-04-22 20:53:18 +02:00
Peter J. Holzer 574338319e Fix handling of directory with x but no r permission 2021-04-20 09:20:36 +02:00
Peter J. Holzer 3f726736ca Add column with foreground color 2021-03-18 16:58:36 +01:00
Peter J. Holzer 4563b0a53a Use Perl version of chartab and autoconfigure GNUmake* 2019-08-23 10:27:42 +02:00
10 changed files with 75 additions and 7 deletions

View File

@ -48,6 +48,8 @@ if ($opts{buckets} eq "log2") {
);
} elsif ($opts{buckets} =~ /^days=(\d+)/) {
@bucket_max = map $_ * 86400, (1 .. $1);
} elsif ($opts{buckets} =~ /^hours=(\d+)/) {
@bucket_max = map $_ * 3600, (1 .. $1);
} else {
usage();
}

View File

@ -1,11 +1,19 @@
include GNUmakevars
-include GNUmakevars
all: chartab ctype-test
chartab:
chartab: chartab.pl
cp $^ $@
ctype-test:
clean:
rm chartab
install: $(BINDIR)/chartab $(BINDIR)/ctype-test
include GNUmakerules
GNUmakevars: GNUmakevars.sh
sh ./$^ > $@
GNUmakerules: GNUmakerules.pl
perl ./$^ > $@
-include GNUmakerules

8
chartab/GNUmakerules.pl Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/perl
use warnings;
use strict;
print "\$(BINDIR)/%: %\n";
print "\tinstall -m 755 \$^ \$@\n";
print "\$(MAN1DIR)/%: %\n";
print "\tinstall -m 644 \$^ \$@\n";

5
chartab/GNUmakevars.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
prefix=${prefix:-/usr/local}
echo "BINDIR=$prefix/bin"
echo
echo "all:"

View File

@ -85,8 +85,8 @@ sub cleandir {
print STDERR "$0:", " " x $level, " cleandir $dir $since {\n";
}
if (!opendir(DIR, ".")) {
printf STDERR "$0:", " " x $level, " cannot opendir $dir: $!";
return;
print STDERR "$0:", " " x $level, " cannot opendir $dir: $!\n";
return 0;
}
my $std = lstat(".");
my $fs = $std->dev;

View File

@ -55,6 +55,7 @@ my $vertical; # use vertical output format
my $escape; # escape non-printable characters
my $xhtml; # produce XHTML output
my $style; # produce XHTML output
my $separator; # if set, produce CSV with this separator and double-quoted fields
GetOptions(
'help|?' => \$help,
@ -62,6 +63,7 @@ GetOptions(
'xhtml' => \$xhtml,
'escape' => \$escape,
'style:s' => \$style,
'separator:s' => \$separator,
) || pod2usage(2);
pod2usage(1) if $help;
@ -163,6 +165,18 @@ if ($xhtml) {
}
print "\n";
}
} elsif ($separator) {
no warnings 'uninitialized';
print join($separator, @{$sth->{NAME}}), "\n";
while (my @a = $sth->fetchrow_array()) {
for (@a) {
if (/[$separator"]/) {
s/"/""/g;
s/.*/"$&"/;
}
}
print join($separator, @a), "\n";
}
} else {
no warnings 'uninitialized';
print join("\t", @{$sth->{NAME}}), "\n";

View File

@ -22,7 +22,7 @@ cfg/%:
gethostbyname: gethostbyname.o hstrerror.o
fqdn: fqdn.o hstrerror.o
fqdn: fqdn.pl
hstrerror.o: cfg/have_hstrerror.h

27
dns/fqdn.pl Executable file
View File

@ -0,0 +1,27 @@
#!/usr/bin/perl
use v5.26;
sub fqdn {
my ($h) = @_;
if ($h =~ /\./) {
return $h;
}
open(my $fh, '-|', '/usr/bin/host', $h);
while (<$fh>) {
if (/^(\S+\.\S+) has address/) {
return $1;
}
}
say STDERR "$0: cannot determine FQDN of $h";
return "$h.invalid";
}
if (!@ARGV) {
$ARGV[0] = `/bin/hostname -f`;
chomp($ARGV[0]);
}
for my $h (@ARGV) {
say fqdn($h);
}

View File

@ -2,6 +2,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "hstrerror.h"
char *cmnd;

View File

@ -1,7 +1,7 @@
#!/usr/bin/perl
for my $i (0 .. 255) {
print fg(0), bg(15), sprintf("%3d", $i), " : ", bg($i), "x" x 10, rst(), "\n";
print fg(0), bg(15), sprintf("%3d", $i), " : ", bg($i), "x" x 10, rst(), " ", fg($i), "x" x 10, rst(), "\n";
}