This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script is going to find all files below the current directory of the given type | |
ftype=$1 | |
find ./ | awk "/${ftype}$/ {print \$0}" | sed -e 's/\/\//\//' | |
exit 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script must be run from within the working copy of the repository | |
# Get the revision number for the HEAD of the repository | |
svn info -r HEAD | awk '/^Revision:/ {print $2}' |
NewerOlder