blob: b1498356d0b76b216fa272cc9b6a2e61ebbb6f4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ISC license. */
#include <skalibs/strerr2.h>
#include <skalibs/djbunix.h>
#define USAGE "s6-touch file ..."
int main (int argc, char const *const *argv)
{
char const *const *p = argv + 1 ;
PROG = "s6-touch" ;
if (argc < 2) strerr_dieusage(100, USAGE) ;
for (; *p ; p++)
{
register int fd = open_append(*p) ;
if (fd < 0) strerr_diefu2sys(111, "open_append ", *p) ;
fd_close(fd) ;
}
return 0 ;
}
|