Is there any command in Unix, other than:ls, to list the
files in a directory?
The answer will be highly appreciated...

Answers were Sorted based on User's Feedback



Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / gun0m

"echo *" will list the files inside the dir

Is This Answer Correct ?    62 Yes 2 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / dattatraya

echo *

Is This Answer Correct ?    15 Yes 3 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / pankaj sain

"dir" also works in unix/linux.

Is This Answer Correct ?    17 Yes 9 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / yankee

I think the question was not clear to Anil or Dhina...What i
meant was that i don't want to use 'ls' to list the files...
Is there any other way to do so?

Is This Answer Correct ?    9 Yes 2 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / nik

You can use find command with - type f. It will print all
the files in the current dir recursively.

Is This Answer Correct ?    13 Yes 6 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / chetan

Hi,

echo *.* will list out all the files in a directory.

( all files are assumed to be having some extension)

Is This Answer Correct ?    12 Yes 7 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / ravi

you can use the file command, eg file *. Actually file
command is used to display type of the file given as argument.

Is This Answer Correct ?    3 Yes 0 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / ashish

echo * simply.it lists files and directories in pwd. no hidden files r displayed

Is This Answer Correct ?    4 Yes 1 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / pritish

echo * | tr " " "\n"
this will display all the files in the current directory
sequentially...

you can also use dir command.

Is This Answer Correct ?    4 Yes 1 No

Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be..

Answer / kishore devkate

Hi Yankee,

There are so many commands to display the files in the
present working directory without using ls command, find
the below commands,

echo *
dir
du -sk *

....etc
but we have to think logical how to view the file without
using ls.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

What are file permissions in Unix, and how are they represented?

2 Answers  


What does 'mkdir' command do in UNIX?

0 Answers   Syntel, Visa,


what is the difference between commmands cmp and diff?

9 Answers   iNautix,


how will you convert a general file to a hidden file?

4 Answers  


What are the general commands in using unix os for a beginner?

0 Answers  


What is the Unix file system hierarchy?

2 Answers  


What are the dos commands?

0 Answers  


What are grep patterns?

0 Answers  


what is the advaantage of each user having its own copy of the shell?

2 Answers   Infosys,


How do I run a whois command?

0 Answers  


Write a command that will allow a unix system to shut down in 15 minutes, after which it will perform a reboot.

0 Answers  


How many unix commands are there?

0 Answers  


Categories