latest sources commit

This commit is contained in:
mikx
2023-11-07 05:04:30 -05:00
commit 749adf47ca
7570 changed files with 5705168 additions and 0 deletions

View File

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
unamestr=`uname`
if [[ "$unamestr" == 'Darwin' ]]; then
date='gdate'
else
date='date'
fi
CUR_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )/" && pwd )";
rev=$( $date +%s%N );
filename=rev_"$rev".sql
echo "--" > "$CUR_PATH/$filename" && echo "File created: $filename";