Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I always run my shell with a command:

./shellName file1 file2

So, in the shell, I can refer file1 as $1 and file2 as $2. However, if I want to run the shell with this command

./shellName < file1 > file2

I tried to read the file1 as standard input and file 2 as standard output. How can I refer file1 and file2 in the shell script? Can I still use $1 and $2? Thanks in advance.

share|improve this question

3 Answers

up vote 2 down vote accepted
# read from file1
read LINE

# write to file2 line we just readed
echo $LINE
share|improve this answer
do you mean, in the script I can refer file1 as LINE? – user1988385 Jan 18 at 4:56
no, LINE is a name of variable you read to, since you have replaced stdin with file input - you don't have to use any specific name to refer to input file, you just read it line by line – zed_0xff Jan 18 at 4:58
so, previously I used filename in the sed command : sed -i 's/somePattern/replacedPattern/g' $2. How can I change this command with LINE? – user1988385 Jan 18 at 5:02
echo $LINE | sed 's/somePattern/replacedPattern/g' – zed_0xff Jan 18 at 5:03
okay. I got it. However, what should I do if I am going to make several changes before I write it to the output file? should I make an temp file? if so, how can I make an temp file in shell? – user1988385 Jan 18 at 5:11
show 1 more comment

Any read statement in your script will read from file1 and any echo/print statement will write the output to file2. $1 and $2 will be empty

share|improve this answer

If you directing files in, I don't think that the script has the variables available to them, rather the text is read from file1 and used as input for the script and anything outputted will end up in file2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.