Compare commits
4 Commits
af56608bc2
...
c4ef2b10ca
Author | SHA1 | Date | |
---|---|---|---|
|
c4ef2b10ca | ||
|
04abb84277 | ||
|
daceb4ddbc | ||
|
f2ebaa2e87 |
29
hash-files
29
hash-files
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
log_file=/var/log/hash-files.log
|
log_file=/var/log/hash-files.log
|
||||||
|
md5_bin=$(which md5sum)
|
||||||
|
mktemp_bin=$(which mktemp)
|
||||||
DateTimeStamp=$(date +\%D_\%T)
|
DateTimeStamp=$(date +\%D_\%T)
|
||||||
|
|
||||||
set -a
|
set -a
|
||||||
@ -28,12 +30,20 @@ create_list_of_files () {
|
|||||||
unset IFS
|
unset IFS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mdls_files () {
|
||||||
|
IFS=$'\n'
|
||||||
|
for file in $list_of_files; do
|
||||||
|
echo "=== mdls info ===
|
||||||
|
==========="
|
||||||
|
mdls $file
|
||||||
|
done
|
||||||
|
}
|
||||||
hash_files () {
|
hash_files () {
|
||||||
#echo "=== Hash files. ===
|
#echo "=== Hash files. ===
|
||||||
#======================"
|
#======================"
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
for file in ${list_of_files[@]}; do
|
for file in ${list_of_files[@]}; do
|
||||||
hash=$(md5sum $file | awk '{ print $1 }')
|
hash=$($md5_bin $file | awk '{ print $1 }')
|
||||||
list_of_hashes+=( $hash )
|
list_of_hashes+=( $hash )
|
||||||
done
|
done
|
||||||
write_log "Files hashed successfully."
|
write_log "Files hashed successfully."
|
||||||
@ -53,7 +63,7 @@ create_csv () {
|
|||||||
write_data () {
|
write_data () {
|
||||||
#echo "=== Write data to a .csv file. ===
|
#echo "=== Write data to a .csv file. ===
|
||||||
#===================================="
|
#===================================="
|
||||||
temp_csv_file=$(mktemp)
|
temp_csv_file=$($mktemp_bin)
|
||||||
printf '%s,%s\n' "File Path" "File Hash" >> $temp_csv_file
|
printf '%s,%s\n' "File Path" "File Hash" >> $temp_csv_file
|
||||||
for line in ${csv_array[@]};do
|
for line in ${csv_array[@]};do
|
||||||
printf '%s\n' $line
|
printf '%s\n' $line
|
||||||
@ -73,13 +83,14 @@ trap cleanup EXIT
|
|||||||
|
|
||||||
echo "Main Start"
|
echo "Main Start"
|
||||||
create_list_of_files
|
create_list_of_files
|
||||||
hash_files
|
mdls_files
|
||||||
if [ ${#list_of_files[@]} != ${#list_of_hashes[@]} ];then
|
#hash_files
|
||||||
echo "Error! Number of files and hashes differs. Exiting..." && exit
|
#if [ ${#list_of_files[@]} != ${#list_of_hashes[@]} ];then
|
||||||
else
|
# echo "Error! Number of files and hashes differs. Exiting..." && exit
|
||||||
create_csv
|
#else
|
||||||
fi
|
# create_csv
|
||||||
write_data
|
#fi
|
||||||
|
#write_data
|
||||||
|
|
||||||
#while $list_of_files >=1; do
|
#while $list_of_files >=1; do
|
||||||
#done
|
#done
|
||||||
|
Loading…
Reference in New Issue
Block a user