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 the difference between pipe (|) and tee command in unix

14 Answers   Cap Gemini, TCS,


What Command is used to make a directory?

4 Answers   IBM,


What is the functions of zambie process?

3 Answers  


What is the size of time_t?

0 Answers  


which command is used to identify the type of the file?

3 Answers  






What is the use of cut command in unix?

0 Answers  


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


How to use grep command to list find the records of a file containing 10 different strings?

0 Answers  


What does the command '$ls | wc –l > file1' do?

0 Answers  


what is telnet?

6 Answers  


By using which command we can find the CPU utilization time?

7 Answers   Amazon,


How do you change your account's password?

6 Answers  


Categories