51 lines
		
	
	
		
			797 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			797 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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 -maxdepth 1 -type f); 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
 | 
						|
 | 
						|
 |