nix 0.4.3

Rust friendly bindings to *nix APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -euo pipefail

target=$1
us=$(pwd)

cd $1

for f in $(find -type f); do
  if ! cmp $f $us/$f; then
    true
  fi
done

exit 1