Sponsored Content
Full Discussion: Really strange unix message
Operating Systems AIX Really strange unix message Post 302497476 by methyl on Thursday 17th of February 2011 10:18:56 AM
Old 02-17-2011
Big guess.
This looks like the sort of issue you can get with 32-bit arithmetic in a shell script.
i.e. trying to work with numbers above 2,147,483,647 which in disc space terms would be 2 Gb.
I'd look for a disc space monitoring script running from cron.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

there was a strange character(^M) been added automatically in UNIX

I used Notepad to compile my txt file and then I transferred this file to UNIX. When I use vi to open the file, I found that at the end of each line there was a "^M" character. In the original txt file there was not this character. Why this character would been added automatically in UNIX? (4 Replies)
Discussion started by: Jasmine
4 Replies

2. UNIX for Advanced & Expert Users

Strange "Unable to load interpreter" message!

Hi all, I run RedHat. Not a long ago it has started to give me message on the screen "Unable to load an interpreter". Just plain message. I checked log files. I havent found anything strange in there. Any suggestions what it might mean and how to get rid of it? Thank you all. (6 Replies)
Discussion started by: solvman
6 Replies

3. HP-UX

HP Unix MC Message Guard

Can somebody please give me a description of MC Service Guard running on HP Unix? (3 Replies)
Discussion started by: czinzi
3 Replies

4. Shell Programming and Scripting

ed strange error message

When I start ed as regular user, following message is displayed: $ed ERROR: tempnam failed: Permission denied $ I think, following error produced in vi when search results from previous error: No previous regular expression Setting TMPDIR variable cause no effect. As root all works... (6 Replies)
Discussion started by: frenki
6 Replies

5. UNIX for Dummies Questions & Answers

very strange behaviour on unix server

Hi guys, im encountering some very strange behaviour (intermittently) when visiting my domain. We have a dedicated unix server hosting a number of sites with the problem currently reported on one site. I go to mydomain.com, and am directed to http://www.mydomain.com/?fnf=1 Classified ads... (7 Replies)
Discussion started by: bolo77
7 Replies

6. Shell Programming and Scripting

Strange error message with regex test...

Hi all, I have a script where i need to check the format of a string. finally, i'm waiting a "process name" and 2 numbers separated by a "," string like : "this_is_a_string.txt,1,10 should be ok" string ok : "apache.exe,1,10" string ok : "mysqld,50,0" string not ok : "ap ache,1,10"... (4 Replies)
Discussion started by: fgilain
4 Replies

7. Solaris

Error Message in unix

Hi all......I'm sorry if my english is not that good. Can somebody help me to about this error. I found it in message.log Jan 16 18:22:42 ASM imapd: get_balanced_partition: -- chosen Jan 16 18:22:50 ASM SUNW,UltraSPARC-III+: NOTICE: Corrected system bus (CE) Event detected by CPU1 at TL=0,... (2 Replies)
Discussion started by: komang
2 Replies

8. UNIX for Dummies Questions & Answers

a strange message when executing the sort command

Dear all, when I issue the command: gunzip -c file.gz |sort the command is executed normally and correctly but a message keeps appearing everytime I run the command: the message: sort: missing NEWLINE added at end of input file STDIN Does anyone know what is the meaning of this message?... (3 Replies)
Discussion started by: marwan
3 Replies

9. Shell Programming and Scripting

I am getting strange message when run borne shell script

I have a code: if then#{ process daily files for file in *_${Today}*.csv *_${Today}*.txt do if || then echo "This file will be processed in separate script" continue fi if ;then ... (2 Replies)
Discussion started by: digioleg54
2 Replies
cueprint(1)						      General Commands Manual						       cueprint(1)

NAME
cueprint - report disc and track infomation from a CUE or TOC file SYNOPSIS
cueprint [ { -i format | --input-format=format } { -n number | --track-number=number } { -d template | --disc-template=template } { -t tem- plate | --track-template=template } ] [ file ... ] cueprint --help DESCRIPTION
cueprint reports disc and track information from CUE and TOC files, which are typically created by compact disc ripping software. By default, cueprint reports a default set of disc information, and a default set of information for each track on the disc. With options, the report can be restricted to a specific track, and the presentation of the disc and track information can be extensively customized using printf(3)-style format strings (referred to here as 'templates' to avoid confusion with the concept of file format). All characters in a template are reproduced as-is in the output except for conversions (which begin with '%') and escapes (which begin with ''). If no filenames are specified, cueprint reads from standard input, and an input format option must be specified. If one or more filenames is provided, but the input format option is not specified, the input format will be guessed based on each file's suffix (e.g., .cue or .toc). This heuristic is case-insensitive. Conversions A conversion has the form '%[flags][width][.precision]type'. flags may be zero or more of the following: Character Meaning ----------------------------------------------------------- - left-justify expansion + place sign before numbers ' ' (space) place a blank space before a positive number 0 pad numbers with zeroes width is the minimum field width. precision is the maximum width for strings. type is a single character which specifies the conversion type -- apart from %, it is the only mandatory part of the conversion. The available conversion types are presented in the table below; disc conversion types are presented in the left half of the table, and track conversion types in the right half. Disc template expansion characters are valid for both disc and track templates. Character Conversion Character Conversion ---------------------------------------------------------------- A album arranger a track arranger C album composer c track composer G album genre g track genre i track ISRC M album message m track message N number of tracks n track number P album performer p track performer S album songwriter T album title t track title U album UPC/EAN u track ISRC (CD-TEXT) Any other character used as a conversion type expands to itself. This is how a literal percent sign is placed in the template; i.e., '%%' expands to '%'. Escapes The recognized escapes are all single characters, and listed in the table below. Escape Sequence Expansion ---------------------------------- a alert (bell)  backspace f formfeed newline carriage return horizontal tab v vertical tab null Any other character used after the '' in an escape sequence expands to itself. This is how a literal escape character is placed in the template; i.e., '\' expands to ''. OPTIONS
-d template, --disc-template=template set disc template (see TEMPLATE EXPANSION) -h, --help displays a usage message and exits. -i format, --input-format=format sets the expected format of the input file(s) to format, which must be either cue or toc. -n number, --track-number=number only print track information for a single track. The default is to print information for all tracks. -t template, --track-template=template set track template (see TEMPLATE EXPANSION) EXIT STATUS
cueprint exits with status zero if it successfully reports information from each input file, and nonzero if there were problems. EXAMPLES
To display disc and track information (using the default template for both): % cueprint album.cue To print the number of tracks in a CUE file: % cueprint -d '%N ' album.cue AUTHOR
Cuetools was written by Svend Sorensen. Branden Robinson contributed fixes and enhancements to the utilities and documentation. SEE ALSO
cuebreakpoints(1), cueconvert(1), printf(3) cueprint(1)
All times are GMT -4. The time now is 04:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy