|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Not getting expected output
Hi 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 however i am getting output in different way . pls see below 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 i also noticed that the command Code:
echo "File Name\tType" is not working properly in script but when i run this separately it is working fine . Code:
$ echo "File Name\tType" File Name Type $ i am using ksh shell regards, Scriptor |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
try with -e Code:
echo -e "$i\t\c" |
| Sponsored Links | ||
|
|
#3
|
||||
|
||||
|
|
|
#4
|
|||
|
|||
|
|
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Output is not comming as expected | Agupte | Shell Programming and Scripting | 8 | 03-26-2012 07:44 AM |
| elif if not expected | kmsekhar | Shell Programming and Scripting | 12 | 12-30-2011 06:35 AM |
| awk not generating the expected output | scripter12 | Shell Programming and Scripting | 7 | 09-14-2010 09:43 PM |
| [C language] system function print output when not expected. | ejdv | Programming | 5 | 05-04-2010 02:09 PM |
| Why this is not working in expected way? | meharo | Shell Programming and Scripting | 4 | 12-07-2009 08:47 AM |
|
|