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.
This commit is contained in:
commit
7141e0dcc0
2
.env
Normal file
2
.env
Normal file
@ -0,0 +1,2 @@
|
||||
Working_Fullpath=$(pwd)
|
||||
Working_Directory=$(basename $Working_Fullpath)
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.*.sw*
|
||||
|
50
hash-files
Executable file
50
hash-files
Executable file
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user