Create a shell script (sorter.sh) that loops through all items in a directory given by the user using the "read" builtin. This input needs to be able to accept directories using a tilde. The script must validate the input and use a loop to only allow the script to proceed after the validation is complete. It must validate that the directory given is a directory.
The script, while iterating over the items in the directory, should test the items to see if they are directories or files. If they are directories then they need to be renamed to add the current date to the end of the directory name. If they are files they need to be copied into another directory given by the user and force testing purposes must be the path (~/Desktop/sorted). Note that you can not hard code this directory path into the program, you must use the variable taken in from the user. Inside this other directory your script must also create directories named with the starting of "cis90-" and the ending of a through z. So the first three directories would be "cis90-a", "cis90-b", "cis90-c". The files that are getting copied need to be copied into the folders alphabetically. All files beginning with the letter "a" go into the "cis90-a" folder, files beginning with the letter "b" go into the "cis90-b" folder, files beginning with the letter "c" go into the "cis90-c" directory. In order to save you some extra work after you get to "c" all additional files should go into the "cis90-d" directory.
I've got as far as where i need to go over the items for directories and files. Not sure how to get the files into the cis90 folders. Here's what i have so far.
Edit: Im now looking into using a case command to separate the directories and files. then copy the files into their respective folder.
#!/bin/bash
DATE=$(date +%m%d%Y)
read -p "Enter directory for items to be sorted: " dir
eval dir=$dir
while [ -z "$dir" ]; do
read -p "Empty entry. Enter directory: " dir
done
while [ ! -d "$dir" ]; do
read -p "Invalid entry. Enter directory: " dir
done
read -p "Enter directory for cis90 directories: " cis
eval cis=$cis
for j in $cis; do
mkdir $cis/cis90-{a..z}
done
for i in $dir/*; do
if [ -d $i ]; then
echo "$i is a directory."
fi
done

eval dir=$dir&eval cis=$cis? – anishsane Dec 12 '12 at 10:20/ ls(basically, if it contains a command & a special character.) – anishsane Dec 13 '12 at 9:07