blob: 7c2c1567add8d09a644a3b9c105e00fc3fb5e499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ISC license. */
#include <skalibs/posixplz.h>
#include <skalibs/strerr.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++) if (!touch(*p)) strerr_diefu2sys(111, "touch ", *p) ;
return 0 ;
}
|