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 is used to type command?

0 Answers  


How do I use grep to find a file?

0 Answers  


What are the differences among a system call, a library function, and a unix command?

0 Answers  


what is exact definition of operating system?

13 Answers  


What is awk used for?

0 Answers  






how to find the 51th record of a file containing 100 records in unix.

12 Answers   IBM,


distinguish between physical addresses and logical address?

23 Answers   College School Exams Tests, CTS, Infosys, SAX, TATA, TCS,


How is the command '$cat file2 ' different from '$cat >file2 and >> redirection operators ?

0 Answers  


Explain iostat, vmstat and netstat.

3 Answers   CTS, Wipro,


Give the command to display space usage on the UNIX file system.

6 Answers  


What do chmod command do?

0 Answers  


what is the default signal kill in unix?

8 Answers   IBM,


Categories