script to get file size


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script to get file size
# 1  
Old 08-22-2008
script to get file size

Hi All,
I have some requirement. i dont know if we can write some shell script to fulfill the requirement. Here is my requirement...
I have some files under /var/opt/abc/xyz like below.
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.sh
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.sh
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt (This is basically to get the file size)

In those files, there are some files are .txt files. I need to get find out those .txt files and output shoud like below...
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789342 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 7823252 Aug 14 11:03 big.txt

And also i need to do this on several servers. I dont know if we can write a script and put it on one server and run it from there to get the final output. output should be like this....
servername: abc
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789342 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 7823252 Aug 14 11:03 big.txt
servername: xyz
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789342 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 7823252 Aug 14 11:03 big.txt
servername: mnc
-rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 789342 Aug 14 11:03 big.txt
-rw-r--r-- 1 root root 7823252 Aug 14 11:03 big.txt
anybody help me out to write this script. Thanks in advance.
# 2  
Old 08-22-2008
You want to ls -l *.txt in several servers? Is that it? Do the servers have ssh?
# 3  
Old 08-22-2008
Also it would be nice to know the OS. If it is AIX there would be dsh (Distributed Shell) to simultaneously execute a command on several servers, but other OSes might have different means of achieving that or none at all.

So: please help us to help you and tell us some details.

I hope this helps.

bakunin
# 4  
Old 08-23-2008
Thanks for your reply guys...

I got some SLES and some RHEL servers. I dont know whether these servers has ssh. How can we check that.
Also to do ls -l *.txt, we have to go to particular file path then only we can run this command to get the desired output. Instead of going to particular path, can we run this command from Home directory or somewhere else with out doing sudo su - (non root user). Thanks.
# 5  
Old 08-23-2008
Quote:
Originally Posted by s_linux
I dont know whether these servers has ssh. How can we check that.
Issue "ssh". If you see "unknown command" or something such it is not installed, if you get a (ssh-)prompt it is.

Quote:
Also to do ls -l *.txt, we have to go to particular file path then only we can run this command to get the desired output. Instead of going to particular path, can we run this command from Home directory or somewhere else with out doing sudo su - (non root user). Thanks.
ls -l /some/path/*txt

This will list all files "*txt" in the directory "/some/path".

I hope this helps.

bakunin
# 6  
Old 08-23-2008
If it's OpenSSH I don't think you get an interactive prompt, you just get a brief usage message. The big question is how you connect to those other servers now, if you have to walk to the console of each one to type commands then that's not easily scriptable, but telnet or rsh or ssh can be scripted (ssh more easily, and of course, it's the only secure option).
# 7  
Old 08-23-2008
Quote:
Originally Posted by s_linux
Thanks for your reply guys...

I got some SLES and some RHEL servers. I dont know whether these servers has ssh. How can we check that.
In reality you are looking for sshd on remote server and ssh on local.
On remote from CLI check if sshd is running using the command:
Code:
pgrep sshd
or..
ps -aux | grep '[s]shd'
or..
ssh localhost    #if sshd run on default port 22

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash Script - File Size

I have a bash script. I need a modification for safety. my original bash script: mv /home/script/backup /home/script/backup2 mysql -u user -ppassword -Ddatabase --batch --skip-column-names -e 'select id, url from videos where url like "%http%" limit 1' | while read id url do youtube-dl... (1 Reply)
Discussion started by: tara123
1 Replies

2. Shell Programming and Scripting

Split file based on file size in Korn script

I need to split a file if it is over 2GB in size (or any size), preferably split on the lines. I have figured out how to get the file size using awk, and I can split the file based on the number of lines (which I got with wc -l) but I can't figure out how to connect them together in the script. ... (6 Replies)
Discussion started by: ssemple2000
6 Replies

3. Shell Programming and Scripting

shell script for getting the file size

Hi can some one please help me how i can get the output i require: My text file "sample.txt" contains the text like below Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg_fedora-lv_root 15G 2.6G 12G 19% /hari Filesystem Size ... (3 Replies)
Discussion started by: harimhkr
3 Replies

4. Shell Programming and Scripting

Script to read file size and send email only if size > 0.

Hi Experts, I have a script like $ORACLE_HOME/bin/sqlplus username/password # << ENDSQL set pagesize 0 trim on feedback off verify off echo off newp none timing off set serveroutput on set heading off spool Schemaerrtmp.txt select ' TIMESTAMP COMPUTER NAME ... (5 Replies)
Discussion started by: welldone
5 Replies

5. Shell Programming and Scripting

Not able to make the file size 0 with the mentioned script

#!/bin/sh ########################################################################################################## #This script is being used for AOK application for cleaning up the .out files and zip it under logs directory. # IBM # Created #For pdocap201/pdoca202 .out files for AOK #1.... (3 Replies)
Discussion started by: mridul10_crj
3 Replies

6. Shell Programming and Scripting

Script to check file system size

Dears, the output of this command df -h | tr -s ' ' | cut -f5 -d' ' is capacity 24% 0% 0% 0% 0% 1% 0% 24% 24% 0% 93% 1% (4 Replies)
Discussion started by: xxmasrawy
4 Replies

7. Shell Programming and Scripting

compare file size from a output file from a script

Hi guys, firstly I'm working on SunOS 5.10 Generic_125100-10 sun4u sparc SUNW,Sun-Fire-V240 I've made a script to compress two directory and then send them to an other server via ftp. This is working very well. Inside theis script I decide to log usefull data for troubleshooting in case of... (7 Replies)
Discussion started by: moustik
7 Replies

8. UNIX for Dummies Questions & Answers

file size script

Hi, I am trying to write a script that will send an email to me if the size of a folder is below a certain amount. Does anyone know how to write the if (size < 1000) statement. I know how to send the email? I just need the code for determing a folder size. Thanks, Eric (5 Replies)
Discussion started by: ejbrever
5 Replies

9. Shell Programming and Scripting

Get file size in c shell script?

Hi, I want to use an 'if statement' that will check if a certian file is greater in size than a certain value given by the user, but cannot get it to work. Do you have any ideas how this can be done? Your help is appreciated! (6 Replies)
Discussion started by: Dado
6 Replies

10. UNIX for Dummies Questions & Answers

testing for file size in script

Has anyone got a few tips on how I can test if the file size is 0? I am moving files on a regular basis from one location to another with ftp. The files which are 0 bytes in size we want to discard. Thankyou in advance. (3 Replies)
Discussion started by: Ivo
3 Replies
Login or Register to Ask a Question