mirror of
https://github.com/kevinveenbirkenbach/directory-content-scanner.git
synced 2024-11-09 23:21:04 +01:00
Added the option to pass multiple directories
This commit is contained in:
parent
07bc9e000c
commit
3ac9e52206
26
scan.sh
26
scan.sh
@ -1,16 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Check if a directory argument is provided
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "Usage: $0 <directory>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DIR="$1"
|
||||
|
||||
# Ensure the directory exists
|
||||
if [ ! -d "$DIR" ]; then
|
||||
echo "Error: $DIR is not a valid directory."
|
||||
# Check if at least one directory argument is provided
|
||||
if [ "$#" -lt 1 ]; then
|
||||
echo "Usage: $0 <directory1> [<directory2> ...]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
@ -28,5 +20,13 @@ function scan_and_print() {
|
||||
done
|
||||
}
|
||||
|
||||
# Start the scan from the given directory
|
||||
scan_and_print "$DIR"
|
||||
# Loop through all provided directories and start the scan
|
||||
for DIR in "$@"; do
|
||||
# Ensure the directory exists
|
||||
if [ ! -d "$DIR" ]; then
|
||||
echo "Error: $DIR is not a valid directory."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
scan_and_print "$DIR"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user