misc/dync - The NetBSD Packages Collection

C language awk-like utility

The dync utility is a small, but quite useful utility, which allows
the use of C as a scripting language.  This can be quite useful
****SOMETIMES****, allowing access to system calls and library functions
from the command line.  For example, there are occasions when I want
to see the struct stat for a directory entry, and want to be able to
access st_mtime values, without having to parse output from "ls -l".
A simple:

int main(int argc, char **argv)
{
	struct stat	st;
	if (stat(argv[1], &st) == 0) {
		printf("%lld\n", st.st_mtime);
	}
	exit(0);
}

will do the job.  If I was to try this by other means, I would either
have to install all of Perl, and then learn its idiosyncratic syntax,
or write a custom C program, which I would then have to compile on
each architecture I need.

This utility relies on there being a C compiler on the target machine,
and a working dlopen(3).

Build dependencies

pkgtools/mktools pkgtools/cwrappers

Runtime dependencies

(none)

Binary packages

OSArchitectureVersion
NetBSD 10.0aarch64dync-1.1nb2.tgz
NetBSD 10.0aarch64dync-1.1nb2.tgz
NetBSD 10.0aarch64dync-1.1nb2.tgz
NetBSD 10.0aarch64ebdync-1.1nb2.tgz
NetBSD 10.0aarch64ebdync-1.1nb2.tgz
NetBSD 10.0alphadync-1.1nb2.tgz
NetBSD 10.0earmv4dync-1.1nb2.tgz
NetBSD 10.0earmv6hfdync-1.1nb2.tgz
NetBSD 10.0earmv6hfdync-1.1nb2.tgz
NetBSD 10.0earmv6hfdync-1.1nb2.tgz
NetBSD 10.0earmv7hfdync-1.1nb2.tgz
NetBSD 10.0earmv7hfdync-1.1nb2.tgz
NetBSD 10.0earmv7hfdync-1.1nb2.tgz
NetBSD 10.0i386dync-1.1nb2.tgz
NetBSD 10.0i386dync-1.1nb2.tgz
NetBSD 10.0powerpcdync-1.1nb2.tgz
NetBSD 10.0sparcdync-1.1nb2.tgz
NetBSD 10.0vaxdync-1.1nb2.tgz
NetBSD 10.0x86_64dync-1.1nb2.tgz
NetBSD 10.0_BETAx86_64dync-1.1nb2.tgz
NetBSD 8.0i386dync-1.1nb2.tgz
NetBSD 8.0i386dync-1.1nb2.tgz
NetBSD 8.0i386dync-1.1nb2.tgz
NetBSD 8.0powerpcdync-1.1nb2.tgz
NetBSD 8.0powerpcdync-1.1nb2.tgz
NetBSD 8.0powerpcdync-1.1nb2.tgz
NetBSD 8.0powerpcdync-1.1nb2.tgz
NetBSD 8.0x86_64dync-1.1nb2.tgz
NetBSD 8.0x86_64dync-1.1nb2.tgz
NetBSD 8.0x86_64dync-1.1nb2.tgz
NetBSD 9.0aarch64dync-1.1nb2.tgz
NetBSD 9.0aarch64dync-1.1nb2.tgz
NetBSD 9.0aarch64dync-1.1nb2.tgz
NetBSD 9.0alphadync-1.1nb2.tgz
NetBSD 9.0alphadync-1.1nb2.tgz
NetBSD 9.0earmdync-1.1nb2.tgz
NetBSD 9.0earmv4dync-1.1nb2.tgz
NetBSD 9.0earmv6hfdync-1.1nb2.tgz
NetBSD 9.0earmv6hfdync-1.1nb2.tgz
NetBSD 9.0earmv6hfdync-1.1nb2.tgz
NetBSD 9.0earmv7hfdync-1.1nb2.tgz
NetBSD 9.0earmv7hfdync-1.1nb2.tgz
NetBSD 9.0earmv7hfdync-1.1nb2.tgz
NetBSD 9.0i386dync-1.1nb2.tgz
NetBSD 9.0i386dync-1.1nb2.tgz
NetBSD 9.0m68kdync-1.1nb2.tgz
NetBSD 9.0m68kdync-1.1nb2.tgz
NetBSD 9.0m68kdync-1.1nb2.tgz
NetBSD 9.0mips64ebdync-1.1nb2.tgz
NetBSD 9.0powerpcdync-1.1nb2.tgz
NetBSD 9.0powerpcdync-1.1nb2.tgz
NetBSD 9.0powerpcdync-1.1nb2.tgz
NetBSD 9.0powerpcdync-1.1nb2.tgz
NetBSD 9.0sh3eldync-1.1nb2.tgz
NetBSD 9.0sh3eldync-1.1nb2.tgz
NetBSD 9.0sparc64dync-1.1nb2.tgz
NetBSD 9.0sparcdync-1.1nb2.tgz
NetBSD 9.0sparcdync-1.1nb2.tgz
NetBSD 9.0x86_64dync-1.1nb2.tgz
NetBSD 9.0x86_64dync-1.1nb2.tgz
NetBSD 9.3x86_64dync-1.1nb2.tgz
NetBSD 9.3x86_64dync-1.1nb2.tgz

Binary packages can be installed with the high-level tool pkgin (which can be installed with pkg_add) or pkg_add(1) (installed by default). The NetBSD packages collection is also designed to permit easy installation from source.

Available build options

(none)

Known vulnerabilities

The pkg_admin audit command locates any installed package which has been mentioned in security advisories as having vulnerabilities.

Please note the vulnerabilities database might not be fully accurate, and not every bug is exploitable with every configuration.


Problem reports, updates or suggestions for this package should be reported with send-pr.