Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Question about why a command does this Post 302447791 by radoulov on Tuesday 24th of August 2010 10:26:02 AM
Old 08-24-2010
It's because the shell redirection happens before all the rest. You can put it wherever you like:

Code:
% >infile echo ok
% cat infile 
ok
% echo >infile ok 
% cat infile     
ok

This User Gave Thanks to radoulov For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

question about rm command

i have a lot of messages file in the var directory i want to delete now i want to keep messages.1 to messages.10 and then delete everything else after 10 which is like 10 to 96 obviously i cant delete these files individual, can someone tell me the command to delete messages.11 to... (1 Reply)
Discussion started by: IMPTRUE
1 Replies

2. UNIX for Dummies Questions & Answers

question about using tr command

Hello all: I'm trying to use the tr command to change some text in a file, but it is not working as expected. Here's what I'm trying: tr 'INVOIC01' 'INVOICZZ' < inputfile > outputfile It looks to be changing not just the entire string, but any characters within. I just want to change the... (2 Replies)
Discussion started by: merliech
2 Replies

3. Solaris

question about command

On Solaris 8 - what is the equal command to chfs. Thanks carson (3 Replies)
Discussion started by: cmackin
3 Replies

4. Solaris

cp command Question?

I am trying to following.. cp -rp oradata to /prod1 /prod2 /prod3 How I can copy oradata directory in to multiple directories? Thanks -Ad (1 Reply)
Discussion started by: deal732
1 Replies

5. UNIX for Dummies Questions & Answers

Command Question

What does 'directory=`pwd $1` ' mean, I know pwd is present working directory, so does that command take the present working directory of the directory the user is in depending on the varible ($1)? (2 Replies)
Discussion started by: Jayden
2 Replies

6. Shell Programming and Scripting

while command question

Hi What does while ( : ); do ...... ...... ...... done; mean? Does "while ( : )" refer too while true? Thanks. (4 Replies)
Discussion started by: zmfcat1
4 Replies

7. UNIX for Dummies Questions & Answers

mv Command question

When I use the mv command like say, mv file1 ../, it will move file1 to the parent directory of my current working directory. But where would the file go if I do mv file ... (with 3 periods), where would this move file1? (4 Replies)
Discussion started by: MaStErXLY
4 Replies

8. UNIX for Dummies Questions & Answers

New to Unix command line and have a question about the "sort" command

I am going through the Unix Made Easy second edition book by John Muster. So far it's been very informative and I can tell it may be a bit out of date. In one of the exercises it talks about the "sort" command and using it to sort column's of data etc. The "sort" command has changed a bit and... (1 Reply)
Discussion started by: budfoxcat
1 Replies

9. UNIX and Linux Applications

Ls command question

I am scratching my head right now. I am trying to archive a ton of files in a directory. I am attempting to tar them by year. On our development server if I type ls *_2008* it returns all of the files I am expecting to see. (The format of the filename includes xx_xx_xxx_2008-09-29_xxx.xxxx.xxxx)... (8 Replies)
Discussion started by: jmartin99
8 Replies

10. Shell Programming and Scripting

Question on command

Hi, can you please tell me what is the purpose of the following line: sh -c /home/dir/script.sh || exit 33 what i am confused is the || is this an OR boolean, or it might have some other purpose. do you know how this works ? i believe the first to run is the /home/dir/script.sh but what... (4 Replies)
Discussion started by: antoniotunin
4 Replies
MINCCOMPLETE(1) 					User Contributed Perl Documentation					   MINCCOMPLETE(1)

NAME
minccomplete - checks if a MINC file is complete SYNOPSIS
minccomplete [options] <file.mnc> minccomplete is designed as a QC tool that you can use to check if MINC or xfm files have been completely written. DESCRIPTION
minccomplete will check if a file exists and is completely written. The reasons for non-completion are varied but typically caused when a process writing a MINC or xfm file is interrupted. A zero will be returned if the file is complete and a -1 if it isn't. Examples: $ minccomplete in.mnc 0 $ minccomplete in.xfm 0 A MINC file is returned as complete if the image attribute image:complete is set. ie: mincinfo -attvalue image:complete infile.mnc A xfm file is deemed complete if xfm2param can parse the file. The associated exit codes will also be set as part of this so that minccomplete can be used in scripts. An entirely simplistic example: #! /bin/sh infile=$1 if [ `minccomplete ${infile}` ] then echo "Yes!" else echo "Nope, try again" fi Problems or comments should be sent to: a.janke@gmail.com OPTIONS
-v, --verbose Be noisy when doing things --version Print version number and exit -h, --help Dump some quick help output --man Dump a man page -e, --error_string Don't die on errors (eg: file not found) and print the supplied value instead SEE ALSO
mincheader(1) mincinfo(1) xfm2param(1) AUTHOR
Andrew Janke - a.janke@gmail.com COPYRIGHTS
Copyright 2000 by Andrew L Janke perl v5.14.2 2012-03-09 MINCCOMPLETE(1)
All times are GMT -4. The time now is 05:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy