![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Equivalent command to 'stat' | im_new | Shell Programming and Scripting | 6 | 01-15-2009 10:04 AM |
| stat | gajju | UNIX for Advanced & Expert Users | 6 | 09-08-2008 10:55 PM |
| Cannot Stat Error | Homer Allman | UNIX for Advanced & Expert Users | 1 | 05-22-2006 11:07 AM |
| sort can't stat error. | radhika | Shell Programming and Scripting | 5 | 06-03-2005 12:34 AM |
| stat command | emreatlier | Shell Programming and Scripting | 2 | 08-14-2003 05:03 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
stat command error!!
Hi All,
can anyone please rectify this problem for me... if i am using stat command in shell scripting it is throwing error that stat command was not found.. how can i replace stat command with other command in unix shell scripting to get the size of the directory... the below is the code for stat command.. size_dir=$(stat -c %s $1) #$1 has the directory name (e.g. /root/kamal) echo $size_dir please help me to over come error in this code... Thanks & advance kamal |
|
||||
|
Quote:
i dont want to use the stat command i want to replace it with other command can u suggest some other code for simillar o/p .... thanks & regards kamal |
|
|||||
|
or plain c
Code:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
int main(int argc, char *argv[])
{
struct stat filestats;
stat(argv[1],&filestats);
/*now print to print whaever you want
for example,
printf("%d\n",filestats.st_mtim.tv_sec);
*/
}
|
![]() |
| Bookmarks |
| Tags |
| perl, perl shift, shift, shift perl, stat command error!! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|