1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

Implement skeleton install utility

Add install utility skeleton source, based on
mv, including the getopts setup mirroring
GNU's `man install` documentation.  Also
add a single test and build system code.
This commit is contained in:
Ben Eills 2016-07-12 20:56:21 +02:00
parent 61cf4e4fba
commit e72ec4a5bb
8 changed files with 174 additions and 0 deletions

View file

@ -15,6 +15,7 @@ unix = [
"hostid",
"hostname",
"id",
"install",
"kill",
"logname",
"mkfifo",
@ -126,6 +127,7 @@ head = { optional=true, path="src/head" }
hostid = { optional=true, path="src/hostid" }
hostname = { optional=true, path="src/hostname" }
id = { optional=true, path="src/id" }
install = { optional=true, path="src/install" }
kill = { optional=true, path="src/kill" }
link = { optional=true, path="src/link" }
ln = { optional=true, path="src/ln" }