top and other interactive commands like it are prone to create outputs full of escape sequences that are difficult to view without a terminal, no matter how they're captured.
top itself can do this, so you don't need to kill it:
---------- Post updated at 11:21 AM ---------- Previous update was at 11:19 AM ----------
Quote:
Originally Posted by Shawn, Lee
The command is not 'top' and no command line options. Just top-like command.
It displays third-party app. engine's status...
Thanks,
If it works, it's not stupid, but whether and how well it will work depends on the application. The output might not be very readable without a terminal. It'd be better to get the output with the application's cooperation, if possible.
'cat myapp.out' may be misleading. When you do that in a terminal, the terminal will interpret escape sequences for you and present the output properly. But if you try sending that to a printer, or process it with commandline tools, you could find it full of gibberish.
Last edited by Corona688; 12-22-2011 at 02:09 PM..
Reason: thanks methyl
I am trying to check to see if a file exists on a ftp server, well, I know that cant be done, atleast directly, So I came up with this small script
ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
cd public_html/crap
dir $FILE
quit
END_SCRIPT
Where the $ variable... (2 Replies)
I'm having trouble capturing output from the following command on AIX:
grpck -n ALL > error.out
It gives me the results on the screen but my file is blank.
I have no trouble capturing output from "ls > ls.out", but doesn't seem to work with the grpck command.
Any ideas?
Thanks. (2 Replies)
Hi,
I'm new to ksh - unix platform. I'm writing a small script which will search my current directory and will search for file names which it takes input from the users.
Here is the code I'm having.
1 #!/bin/ksh
2 echo "enter a file name to be searched in the current dir : "
3 read... (1 Reply)
Hi all, I'd like to capture the output from the 'top' command to monitor my CPU and Mem utilisation.Currently my command isecho date
`top -b -n1 | grep -e Cpu -e Mem` I get the output in 3 separate lines.Tue Feb 24 15:00:03
Cpu(s): 3.4% us, 8.5% sy .. ..
Mem: 1011480k total, 226928k used, ....... (4 Replies)
hi,
I want to extract and save the cpu(s) information from top command output, but individual cpu statistics separately on a multi-processor machine.
In command line, top will show this statistics when we press the switch "1".
any ideas?
thanks,
meharo (3 Replies)
I have written shell script to send file as an attachemt of email and output of "top -o res" command as email body. it works fine if i execute manually from prompt but it does not send "top -o res" command output in email body when it is executed via crontab. Any suggestions. My script is below:... (5 Replies)
Hello all,
I've been woking on Solaris and Linux (Red Hat) so far but now I've inherited an HP-UX system and having minor issues with syntax...Appreciate if you could help me out here..
1) I'm trying to sort the output of the top command in HP-UX 11.11 by pressing O (capital O) after typing... (2 Replies)
Hi All,
In the output of TOP command in my unix system, i monitored that some process has utilization more than 100% even some process has 4000% utilisation.
Please help me understand how it is possible to show more than 100% utilization.
Please see the screenshot below:... (2 Replies)
need help with formatting output of command top and prstat. My requirment is to remove few columns and display remaining . But when i used awk to do that the output seems to be have gone vague, mixing the column values.
After using awk to print particular column the output seems to have lost... (1 Reply)
Hello,
I am a beginner, I have currently Solaris 11 on a vmware machine. Whenever I type a command like 'ls' the screen scrolls to the end of the screen. I am unable to see the entire list of directories and files. I have tried ls |page command, but looking out for a better option. (3 Replies)
Discussion started by: farheenprasad
3 Replies
LEARN ABOUT REDHAT
neon-config
NEON-CONFIG(1) neon NEON-CONFIG(1)NAME
neon-config - script providing information about installed copy of neon library
SYNOPSIS
neon-config [--prefix]
[--cflags | --libs | --support feature | --help | --version]
DESCRIPTION
The neon-config script provides information about an installed copy of the neon library. The --cflags and --libs options instruct how to
compile and link an application against the library; the --version and --support options can help determine whether the library meets the
applications requirements.
OPTIONS --cflags
Print the flags which should be passed to the C compiler when compiling object files, when the object files use neon header files.
--libs Print the flags which should be passed to the linker when linking an application which uses the neon library
--version
Print the version of the library
--prefix dir
If dir is given; relocate output of --cflags and --libs as if neon was installed in given prefix directory. Otherwise, print the
installation prefix of the library.
--support feature
The script exits with success if feature is supported by the library.
--help Print help message; includes list of known features and whether they are supported or not.
EXAMPLE
Below is a Makefile fragment which could be used to build an application against an installed neon library, when the neon-config script can
be found in $PATH.
CFLAGS = `neon-config --cflags`
LIBS = `neon-config --libs`
OBJECTS = myapp.o
TARGET = myapp
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS)
myapp.o: myapp.c
$(CC) $(CFLAGS) -c myapp.c -o myapp.o
AUTHOR
Joe Orton <neon@webdav.org>.
neon 0.23.5 8 October 2002 NEON-CONFIG(1)