Sponsored Content
Top Forums Shell Programming and Scripting Script that displays contents of a directory Post 302593862 by subway69 on Sunday 29th of January 2012 03:19:19 PM
Old 01-29-2012
Script that displays contents of a directory

Hello all! I am writing a script that takes in a directory name as input and if the directory exists, it shows the files inside the directory

here is what I have so far (incomplete) (mostly like pseudocode)
Code:
#/bin/sh
echo Please enter the name of a directory
read dir
grep $dir /home/other/xxxxx
if test $? -eq 0
then
cd $dir ls (this is where I get confused, this is basically pseudo code to show what I am trying to do(
else
echo $dir is not a directory
fi

disregard the xxxxx, that is personal information I have erased. What I want it to do is use grep to search the current directory for any "sub directories" and see if they exist. If they do exist then run the cd command to jump to that directory and ls to show the contents. I am having trouble incorporating it into the script. Any help is appreciated. . thank you
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

pine email tool displays directory listing

I just moved my mail server (qmail in maildir format) from a solaris box to a RedHat linux box. When I select some inboxes in pine, I get a directory listing of the inbox, its not automatically opening the qmail cur directory. This doesn't happen with all, and it doesn't happen at all on... (0 Replies)
Discussion started by: cross
0 Replies

2. UNIX for Dummies Questions & Answers

list contents of directory

I want to list the contents of a directory, but I do not want to use the ls, is there another way?? (3 Replies)
Discussion started by: carl_vieyra
3 Replies

3. UNIX for Dummies Questions & Answers

Best way to list a directory's contents?

Hey guys! I'm so glad I found this site, I've had so many questions and have been left alone for roughly a year scanning man pages but It's just not quite cutting it for some things. So, I often like to list directories when browsing around my local machine, a friend's machine, or my web... (6 Replies)
Discussion started by: bbilheimer
6 Replies

4. Solaris

Directory should not be deleted, But the contents can be

Hi Guys, I have an user's home directory set to /home/A And A contains the following directories B & C Is there some way in solaris by which i can prevent the directories B and C from getting deleted by the user but the contents of the directories B & C can be deleted ? Also i have... (2 Replies)
Discussion started by: localhost
2 Replies

5. Shell Programming and Scripting

Regular Expression on Directory Contents

This should be an easy question for you gurus. :) How can I create a regular expression to match all files in the current directory that have only one period in their file name, and also not contain the string "abc" before the period? It would match: foo.txt foobar.log It would not... (4 Replies)
Discussion started by: blondie53403
4 Replies

6. Shell Programming and Scripting

Remove contents of directory, but not directory

What's the best way to delete everything in a directory, but not the directory itself, without using shell wildcards? (9 Replies)
Discussion started by: pdc
9 Replies

7. Shell Programming and Scripting

script to delete contents in a directory by date

Hi , I am trying to make a cron job to delete the contents of a directory in a linux environment.The contents created before 2 days should get deleted by this job.Here is what i have written : /usr/bin/find / -name *.log -ctime +2 -exec /bin/rm -f {} \; Is it correct....If not so,please... (9 Replies)
Discussion started by: d8011
9 Replies

8. UNIX for Dummies Questions & Answers

script works well but displays " line 6: =: No such file or directory"

strange :) can you tell why?:cool: #!/bin/bash echo " enter your age " read age if ; then echo " you do not have to pay tax " elif ]; then echo " you are eligible for income tax " else echo " you dont have to pay tax " fi (3 Replies)
Discussion started by: me.
3 Replies

9. Shell Programming and Scripting

Shell script to find and replace contents of files in directory

Hi all This is my first post. Please bear with me with all my mistakes. I started learning shell since couple of days now and this might be quite basic for all, i want to search for files in a directory containing specific string and replace it with new string. The code i wrote is quite bulky... (2 Replies)
Discussion started by: theprogrammer
2 Replies

10. Shell Programming and Scripting

Script Output Displays Multiple Text

Hello there, I'm using a read-while loop to preserve the word Failed within a text file. For example, if the word Failed exist twice in a single text file, my STDOUT should re-direct to a new text file and display Failed twice. My output is attached to this thread. I would like output to... (4 Replies)
Discussion started by: SysAdminRialto
4 Replies
dir(4)							     Kernel Interfaces Manual							    dir(4)

NAME
dir - format of directories on short-name HFS file systems SYNOPSIS
Remarks This entry describes the System V-compatible directory format for the HFS file system. It is provided strictly for backward compatibility and compatibility with applications expecting a System V file system environment. It is not compatible with the similar but more general HFS directory format in which describes a format identical to that used in an HFS file system supporting long file names up to 255 bytes in length. The structure defined in should be used in conjunction with the directory(3C) routines for portability to other industry UNIX implementa- tions. DESCRIPTION
A directory behaves exactly like an ordinary file, except that no user can write into a directory. The structure of a directory entry as given in the header file is: By convention, the first two entries in each directory are for and (``dot'' and ``dot dot''). The first is an entry for the directory itself. The second is for the parent directory. The meaning of is modified for the root directory of the master file system; there is no parent, so and have the same meaning. AUTHOR
was developed by AT&T and HP. SEE ALSO
directory(3C). dir(4)
All times are GMT -4. The time now is 04:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy