Hi
I have written below script to get the data in table form.
however i am getting output in different way . pls see below
i also noticed that the command
is not working properly in script but when i run this separately it is working fine .
i am using ksh shell
regards,
Scriptor
I have written below script to get the data in table form.
Code:
#!/bin/sh
echo "File Name\tType"
for i in *;
do
echo "$i\t\c"
if [ -d $i ]; then
echo "directory"
elif [ -h $i ]; then
echo "symbolic link"
elif [ -f $i ]; then
echo "file"
else
echo "unknown"
fi
done
Code:
sel1 \t\c
file
t1 \t\c
file
t1.txt \t\c
file
test \t\c
file
test1 \t\c
file
true.tar \t\c
file
vk \t\c
directory
Code:
echo "File Name\tType"
Code:
$ echo "File Name\tType"
File Name Type
$
regards,
Scriptor