Sponsored Content
Top Forums UNIX for Dummies Questions & Answers ls and wild card - Should be simple! Post 86325 by Perderabo on Thursday 13th of October 2005 07:29:52 AM
Old 10-13-2005
What result do you get? What shell are you using?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

using if with wild card patterns

Hi, Please help me. Suppose I have a file which contains files like: My file :/tmp/rooh_20020518.lst it consists: ASI00320225041925URD01 ASI00320225041925KER02 ASI00390228095244KER08 ... (1 Reply)
Discussion started by: rooh
1 Replies

2. UNIX for Dummies Questions & Answers

How do I pass a wild card as an argument

Hi, I would like to pass a wild card as part of an argument. But when I do it the script views the wild card as text. Example: sFile=MG1A* sort $sFile > $sFile.sorted What I get is MG1A*.sorted The problem is I am passed a series of files where the first few characters like "MG1A"... (2 Replies)
Discussion started by: eja
2 Replies

3. Shell Programming and Scripting

Wild card in find perm

Hi, Is there a way to use find command to list the directories for certain permissions. I know we can use find . -type d -perm nnn, where nnn is the permission number . However I wold like to know if I wanna search for wild card permissions i.e 75* / 7* / 55* , as i do not know the actual... (1 Reply)
Discussion started by: braindrain
1 Replies

4. AIX

df, grep, wild card

Hi, I want to monitor my filesystem capacity and I want to df with grep wildcard for all 9*%. Is this possible? I want to replaced all the existing complicated scripts I have in the system. Thanks, Itik (2 Replies)
Discussion started by: itik
2 Replies

5. Shell Programming and Scripting

wild card in if condition not working

Hi, I am using RHEL5. I have following if condition. if In the above condition, if the value of a contains word WARNING, it should match. i.e., WARNING_MESSAGE, CRITICAL WARNING, WARNING ALERT etc. it should match. For b, alert error, ALERT ERROR, ERROR IMMEDIATE ACTION REQUIRED, etc... (2 Replies)
Discussion started by: user7509
2 Replies

6. Shell Programming and Scripting

How to send a string to function containing wild card?

Hey All, I am trying to send a string as an input parameter to a function which contains a wild card character - * However the function is taking it as: PS: The directory - '/path/to/my/dir/' has 3 files: file1.out, file2.out, file3.out However I want to disable this wild... (2 Replies)
Discussion started by: paragkalra
2 Replies

7. Shell Programming and Scripting

Grep using wild card issue

Hi, I am having a file (file1) having following contents " xet B - All Divers/All Rivers - - ns - " Now when i use cat file1 | grep 'RF' it doesn't returns anything. But on using cat file1 | grep 'RF*' shows me... (6 Replies)
Discussion started by: sarbjit
6 Replies

8. Shell Programming and Scripting

find with wild card [solved]

Can somebody help me with the following syntax? I want to find all files that end with *.arc SUFFIX=".arc" find /tmp -name "\*$SUFFIX" -print 2>/dev/null ---------- Post updated at 03:45 PM ---------- Previous update was at 03:41 PM ---------- got it thanks -name... (0 Replies)
Discussion started by: BeefStu
0 Replies

9. Shell Programming and Scripting

Wild card for dir path

I have dir structure like this : /opt/oracle/product/abc/sqlplus/admin/ /opt/oracle/product/def/sqlplus/admin /opt/oracle/product/ghi/sqlplus/admin I am trying to use wildcard ( for dirs abc,def,ghi) ..something like this : cp xyz.txt ... (1 Reply)
Discussion started by: talashil
1 Replies

10. Shell Programming and Scripting

Find the directories and deleting with wild card

Hi Firends, I have requirement like find the directories in unix after my my deployment is done. generally my requirement as follows. /data/common/scripts is folder and it has multiple scripts in this path. I have taken the back up of scripts folder as below /data/common/0816_scripts... (4 Replies)
Discussion started by: victory
4 Replies
statfs(3)						     Library Functions Manual							 statfs(3)

Name
       statfs, - get file system statistics

Syntax
       #include <sys/types.h>
       #include <sys/param.h>
       #include <sys/mount.h>

       statfs(path, buffer)
       char *path;
       struct fs_data *buffer;

Description
       The  library  routine returns up-to-date information about a mounted file system.  The path is the path name of any file within the mounted
       file system.  The buffer is a pointer to an structure as defined in

Return Values
       Upon successful completion, a value of is returned.  If the file system is not mounted, is returned.  Otherwise, is returned and the global
       variable errno is set to indicate the error.

Diagnostics
       The library routine fails if one or more of the following are true:

       [ENOTDIR]      A component of the path prefix of path is not a directory.

       [EINVAL]       path contains a character with the high-order bit set.

       [ENAMETOOLONG] The length of a component of path exceeds 255 characters, or the length of path exceeds 1023 characters.

       [ENOENT]       The file referred to by path does not exist.

       [EACCES]       Search permission is denied for a component of the path prefix of path.

       [ELOOP]	      Too many symbolic links were encountered in translating path.

       [EFAULT]       buffer or path points to an invalid address.

       [EIO]	      An I/O error occurred while reading from the file system.

See Also
       getmnt(2), getmountent(3)

																	 statfs(3)
All times are GMT -4. The time now is 01:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy