From 7141e0dcc033baf22112431c913dde4454d84bf9 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Thu, 3 Mar 2022 23:26:39 -0500 Subject: [PATCH] On branch master Initial commit Changes to be committed: new file: .env Environment variables new file: .gitignore Added vim swap files new file: hash-files Barebones, mostly do-nothing. --- .env | 2 ++ .gitignore | 2 ++ hash-files | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 .env create mode 100644 .gitignore create mode 100755 hash-files diff --git a/.env b/.env new file mode 100644 index 0000000..bae0cf8 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +Working_Fullpath=$(pwd) +Working_Directory=$(basename $Working_Fullpath) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4fbe5a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.*.sw* + diff --git a/hash-files b/hash-files new file mode 100755 index 0000000..8db52eb --- /dev/null +++ b/hash-files @@ -0,0 +1,50 @@ +#!/usr/bin/env bash +set -a +source .env 2>&1 > /dev/null +set +a + + +## Functions +############ + +write_log () { +echo " ++ Write to log. + +++++++++++++++" +} + +create_list_of_files () { +echo "=== Get list of files in $Working_Directory. === +==================================================" +IFS=$'\n' +for file in $(find $Working_Fullpath -type f -maxdepth 1); do + list_of_files+=$file +done +unset IFS +} + +hash_files () { +echo "=== Hash files. === +======================" +} + +create_csv () { +echo "=== Create array of comma-separated-values. === +==================================================" +} + +write_data () { +echo "=== Write data to a .csv file. === +====================================" +} + +## Main +####### + +echo "Main Start" +create_list_of_files +write_log + +#while $list_of_files >=1; do +#done + +