Skip to content

Instantly share code, notes, and snippets.

View trzeciak's full-sized avatar

Damian trzeciak

View GitHub Profile
@trzeciak
trzeciak / realpath.c
Created March 15, 2022 22:44
bash realpath.c
#define BASH /* realpath.c
set -x
clang -arch x86_64 realpath.c -o x86_64_realpath
clang -arch arm64 realpath.c -o arm64_realpath
lipo -create -arch x86_64 x86_64_realpath -arch arm64 arm64_realpath -output realpath
rm x86_64_realpath arm64_realpath
(sudo mv realpath /usr/local/bin/realpath)
exit
// */
// References
@trzeciak
trzeciak / install-manifest.plist
Last active August 29, 2015 14:28 — forked from alexcristea/install-manifest.plist
Over-the-Air Ad Hoc Distribution manifest for iOS8. More about this subject you can find on http://www.informit.com/articles/article.aspx?p=1829415&seqNum=16
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- array of downloads. -->
<key>items</key>
<array>
<dict>
<!-- an array of assets to download -->