diff --git a/OS/bash/q1.sh b/OS/bash/q1.sh deleted file mode 100644 index e9c36c0..0000000 --- a/OS/bash/q1.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -echo "Enter the name of item to be checked" -read name -if [ -f $name ]; then -echo "File $name exists" -elif [ -d $name ]; then -echo "Directory $name exists" -else -echo "Neither file or directory" -fi