Ventoy/BUSYBOX/chmod/vtchmod.c

14 lines
172 B
C
Raw Normal View History

2020-08-08 11:39:31 +00:00
#include <sys/types.h>
#include <sys/stat.h>
int main(int argc, char **argv)
{
if (argc != 2)
{
return 1;
}
return chmod(argv[1], 0777);
}