This might be useful after running configure:
find . -type f -name GNUmakefile.* -exec sed -i -e 's|,-R\$(INSTALL_PREFIX)/\$(INSTALL_LIB)|,-rpath $(INSTALL_PREFIX)/$(INSTALL_LIB)|g' {} \;
This might be useful after running configure:
find . -type f -name GNUmakefile.* -exec sed -i -e 's|,-R\$(INSTALL_PREFIX)/\$(INSTALL_LIB)|,-rpath $(INSTALL_PREFIX)/$(INSTALL_LIB)|g' {} \;
#!/bin/bash | |
find . -type f -name *.sql -print0 | xargs -0 cat | wc -l |
package simulations | |
import org.scalacheck.Properties | |
import org.scalacheck.Prop.forAll | |
class ScalaCheckProperties extends Properties("Properties from ScalaTest Docs") { | |
// based on example "supply argument names" property from: | |
// http://www.scalatest.org/user_guide/generator_driven_property_checks |
.DS_Store | |
*.zip | |
*.class | |
*.log | |
.metadata | |
# sbt specific | |
dist/* | |
target/ | |
lib_managed/ |
// this program lists files in a non-deterministic order on windows (node v0.8.22 and v0.10.0) | |
// on linux on v0.8.22 the files are listed arbitrarily but consistently between runs | |
// on linux with v0.10.0 the entries in a directory are listed alphabetically | |
// invoke with: | |
// node ls-tree /path/to/tree/to/crawl | |
var events = require('events'); | |
var path = require('path'); | |
var Stream = require('stream'); |