8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/bash
|
|
echo "Today is " `date`
|
|
|
|
echo -e "\nenter the path to directory"
|
|
read the_path
|
|
|
|
echo -e "\n you path has the following files and folders: "
|
|
ls $the_path |