Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

newline character

Original Message
Name: deeps
Date: July 31, 2006 at 11:17:20 Pacific
Subject: newline character
OS: unix
CPU/Ram: 1gb
Comment:
Can anyone help me how do i find the size of a file in bytes.

I know -s <filename> returns the size in bytes but how do i get that in a variable.

Also, how do i equate a variable to a newline character in shell program.

For eg:

if [ "$line" == "\n" ]

Somehow the above statement doesnt work when i try to check for the newline character in my program.

Thanks.


Report Offensive Message For Removal


Response Number 1
Name: deeps
Date: July 31, 2006 at 11:19:17 Pacific
Subject: newline character
Reply: (edit)
i don't want to use sed, awk or perl in my shell script. so, please suggest an altenative.

Report Offensive Follow Up For Removal

Response Number 2
Name: nails
Date: July 31, 2006 at 11:31:35 Pacific
Subject: newline character
Reply: (edit)
First, test -s <file name> doesn't return the file size. It returns true if the file exists and the size is greater than zero.

a way is to look at the 5th field of a long listing:

if [ -s my.file ]
then
myvar=`ls -l my.file|awk ' { print $5 } '`
echo $myvar
fi

Regarding your second question, how about using test's -z option? This returns true if the length of line is zero:

read line
if [ -z $line ]
then
echo "null"
fi


Report Offensive Follow Up For Removal

Response Number 3
Name: ghostdog
Date: July 31, 2006 at 17:58:49 Pacific
Subject: newline character
Reply: (edit)
the closest you can get, AFAIK, without using sed/awk/perl is use wc -c

eg wc -c filename.txt

output:

4096 filename.txt


Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: newline character

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




Batch File- Current Date in Excel

how to setup call of duty to joytok

WindowsME / HotMail Problem

Corrupt memory

Convert fat32 to Ntfs


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC