7 lines
228 B
Bash
7 lines
228 B
Bash
#!/bin/bash
|
|
default_files_name="`printf '%s\n' \"${PWD##*/}\"`_checksums_`date +%Y-%m-%d-%H%M-%Z`.sha256" # add da timedate stamp to it
|
|
|
|
echo $default_files_name
|
|
|
|
exit 0
|
|
find $PWD -type f -exec sha256sum {} | tee -a files.sha256 |