20 lines
362 B
20 lines
362 B
#!/bin/bash
|
|
|
|
rmclassesrecursively() {
|
|
rm -vf $(find . | grep -E '\.class$')
|
|
}
|
|
|
|
rmdotoanddotdrecursively() {
|
|
rm -v $(find . | grep -E '\.o$|\.d$')
|
|
}
|
|
|
|
function realpath() {
|
|
python3 -c 'import sys, os; print(os.path.realpath(sys.argv[1]))' $1
|
|
}
|
|
|
|
# Print filenames matching grep $1
|
|
function fmatch() {
|
|
grep -ri $1 * | perl -pe 's/\:.*?\n/\n/g' | sort -u
|
|
}
|
|
|
|
|
|
|