This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/acl.h> | |
int main(int argc, const char * argv[]) | |
{ | |
int i = 1; | |
while (i < argc) { | |
printf("%s\n",argv[i]); | |
acl_t acl = acl_get_file(argv[i], ACL_TYPE_EXTENDED); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
import socket | |
import time | |
import re | |
import subprocess | |
import pickle | |
import struct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# script to build recipe_list.txt for AutoPkgr from the recipe overrides | |
from __future__ import print_function | |
import os, sys, inspect, plistlib, xml | |
def errprint(*args, **kwargs): | |
print(*args, file=sys.stderr, **kwargs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'jls-lumberjack', '~> 0.0.20' | |
gem 'hexdump', '~> 0.2.3' |