13 lines
209 B
Bash
13 lines
209 B
Bash
|
#!/bin/bash
|
||
|
#iterate through all the files in a directory
|
||
|
for file in /home/tiandi/test/*
|
||
|
do
|
||
|
if [ -d "$file" ]
|
||
|
then
|
||
|
echo "$file is a directory"
|
||
|
elif [ -f "$file" ]
|
||
|
then
|
||
|
echo "$file is a file"
|
||
|
fi
|
||
|
done
|