1

I have a file abc.out. This file only has a number written in it. I want to access this file, store this number in a variable and use an if condition to check some condition. How do I do this in my bash script?

2 Answers 2

2

You can read the file contents into a variable with:

var=$(< filename)

or:

read var < filename
Sign up to request clarification or add additional context in comments.

Comments

0

You can use the followign syntax.

NUM=$(cat abc.out)

or

NUM=`cat abc.out`

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.