Sponsored Content
Top Forums UNIX for Dummies Questions & Answers using `` ( standart output redirection ) in cshell Post 302211988 by khazin on Saturday 5th of July 2008 04:31:19 PM
Old 07-05-2008
THanks,
I'll try it
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to get desired output after redirection

hi i am running script which contains the commmnds and i am redirecting the script output to a file. like ./script 1> result.txt 2>&1 the above redirection is not working for commands when run in background in a script. but the problem here result.txt containg output which is repeated.... (3 Replies)
Discussion started by: raji
3 Replies

2. UNIX for Dummies Questions & Answers

output redirection in scripts

I am trying to write a script that will remove any line in 2 given text files starting with '-'. the output should be to the second file. this is what I tried: #!/bin/csh -f cat $1 $2 | grep -v '^-' > $2 the problem is the after executing the script, file2 contains only the lines from... (7 Replies)
Discussion started by: stewie griffin
7 Replies

3. Shell Programming and Scripting

redirection and output

I'm redirecting the output of a command to a logfile, however, if the user is on a terminal I would also like the output to be displayed on the screen. tar tvf some_tarfile >Logfile if the user is on a term then have the output to the Logfile and also be displayed on the screen at the same... (2 Replies)
Discussion started by: nck
2 Replies

4. Shell Programming and Scripting

Redirection output

Hi there I have a script that runs but it outputs everything onto the screen instead of a file. I've tried using the > outputfile.txt however all it does is dump the output to the screen and creates an outputfile.txt but doesn't put anything in that file. Any help would be appreciated ... (6 Replies)
Discussion started by: kma07
6 Replies

5. Shell Programming and Scripting

Problem in redirection of output

Hi All, i m facing very strange problem . like suppose i am in one directory and then i type ls it will display the content of directory then i redirect the output as sneha-pardus $ ls > test sneha-pardus $ cat test a.sh b.sh c.sh sneha-pardus $ awk ' { print $1 } ' test > test... (3 Replies)
Discussion started by: aishsimplesweet
3 Replies

6. Shell Programming and Scripting

Output redirection

We have an application here that does some table queries and then prints the result on screen. I do not have the code of this application (which i will just call "queryCommand"), but what it does is that you call it with some parameters and it prints some info about the query and then the... (5 Replies)
Discussion started by: jolateh
5 Replies

7. UNIX for Dummies Questions & Answers

Output redirection

Hello i am trying to write a script that will redirect the output to a certain file. Here is the code so far: #!/bin/bash ps -e | sort | more > psfile When I execute the script nothing happens since i assume the output was redirected to the file called psfile. When I try to look at the... (1 Reply)
Discussion started by: mfruiz34
1 Replies

8. Shell Programming and Scripting

Redirection of ls -l output

Hi I am making a script where i want to redirect the output of ls -l to a file Example #ls -l fil1.txt > /opt/temp/a.txt ac: No such file or directory I want to capture output of this command like here output is ac: No such file or directory can anyone help (4 Replies)
Discussion started by: anish19
4 Replies

9. Shell Programming and Scripting

output redirection

Hi all I was wondering if there was a slicker way of doing this without the file - awk '{print $2}' FS=":" "${FILE}" > "${TMPFILE}" { read M_GRP_ID || m_fail 1 "Error: Read failed 1 (${FUNCNAME})" read M_GRP_WAIT || m_fail 1 "Error: Read failed 2 (${FUNCNAME})" }... (6 Replies)
Discussion started by: steadyonabix
6 Replies

10. Shell Programming and Scripting

For loop output redirection

Hi All, i have below for loop of which i am trying to redirect output in a file: for i in `/usr/sbin/ifconfig -a | awk '/flags/ {print $1}' | grep -v lo | sed 's/://g'` do ifconfig $i dhcp status done >> /tmp/logfile but instead the output is appearing as stdout on screen rather than... (12 Replies)
Discussion started by: omkar.jadhav
12 Replies
MSH(1)								     [nmh-1.5]								    MSH(1)

NAME
msh - nmh shell (and BBoard reader) SYNOPSIS
msh [-prompt string] [-scan | -noscan] [-topcur | -notopcur] [file] [-version] [-help] DESCRIPTION
msh is an interactive program that implements a subset of the normal nmh commands operating on a single file in packf'dformat. That is, msh is used to read a file that contains a number of messages, as opposed to the standard nmh style of reading a number of files, each file being a separate message in a folder. msh's chief advantage is that the normal nmh style does not allow a file to have more than one mes- sage in it. Hence, msh is ideal for reading BBoards, as these files are delivered by the transport system in this format. In addition, msh can be used on other files, such as message archives which have been packed (see packf(1)). Finally, msh is an excellent nmh tutor. As the only commands available to the user are nmh commands, this allows nmh beginners to concentrate on how commands to nmh are formed and (more or less) what they mean. When invoked, msh reads the named file, and enters a command loop. The user may type most of the normal nmh commands. The syntax and semantics of these commands typed to msh are identical to their nmh counterparts. In cases where the nature of msh would be inconsistent (e.g., specifying a +folder with some commands), msh will duly inform the user. The commands that msh currently supports (in some slightly modified or restricted forms) are: ali burst comp dist folder forw inc mark mhmail mhn msgchk next packf pick prev refile repl rmm scan send show sortm whatnow whom In addition, msh has a help command which gives a brief overview. To terminate msh, type CTRL-D, or use the quit command. If the file is writable and has been modified, then using quit will query the user if the file should be updated. The -prompt string switch sets the prompting string for msh. You may wish to use an alternate nmh profile for the commands that msh executes; see mh-profile(5) for details about the $MH environment variable. The exit command is identical to the quit command in msh. msh supports an output redirection facility. Commands may be followed by one of ^> file~^write output to file ^>> file~^append output to file ^| command~^pipe output to UNIX command If file starts with a " " (tilde), then a csh-like expansion takes place. Note that command is interpreted by sh. Also note that msh does NOT support history substitutions, variable substitutions, or alias substitutions. When parsing commands to the left of any redirection symbol, msh will honor `' (back-slash) as the quote next-character symbol, and `"' (double-quote) as quote-word delimiters. All other input tokens are separated by whitespace (spaces and tabs). FILES
$HOME/.mh_profile The user profile /etc/nmh/mts.conf nmh mts configuration file PROFILE COMPONENTS
Path: To determine the user's nmh directory Msg-Protect: To set mode when creating a new `file' fileproc: Program to file messages showproc: Program to show messages SEE ALSO
packf(1) DEFAULTS
`file' defaults to "./msgbox" `-prompt (msh) ' `-noscan' `-notopcur' CONTEXT
None BUGS
The argument to the -prompt switch must be interpreted as a single token by the shell that invokes msh. Therefore, one must usually place the argument to this switch inside double-quotes. There is a strict limit of messages per file in packf'd format which msh can handle. Usually, this limit is 1000 messages. Please remember that msh is not the C-Shell, and that a lot of the nice facilities provided by the latter are not present in the former. In particular, msh does not understand back-quoting, so the only effective way to use pick inside msh is to always use the -seq select switch. Clever users of nmh will put the line pick: -seq select -list in their .mh_profile file so that pick works equally well from both the shell and msh. sortm always uses -noverbose and if -textfield field is used, -limit 0. The msh program inherits most (if not all) of the bugs from the nmh commands it implements. MH.6.8 11 June 2012 MSH(1)
All times are GMT -4. The time now is 04:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy