root / trunk / util / catdir.sh

Revision 218, 159 bytes (checked in by saurik, 7 months ago)

Fixed some dependencies, removed mDNS fix for 2.0, and factored for multi-arch support.

  • Property svn:executable set to *
Line 
1#!/bin/bash
2cd "$1"
3shift
4find -H "$@" -type l -printf '%p -> %l\n' -o -printf '%p (%U/%G/%#m)\n' | sort
5find -H "$@" -type f -print0 | sort -z | xargs -0 cat
Note: See TracBrowser for help on using the browser.