BluGeni
BluGeni

Reputation: 3454

Need to assign the contents of a text file to a variable in a bash script

I am very new to making bash scripts, but my goal here is to take a .txt file I have and assign the string of words in the txt file to a variable. I have tried this (no clue if I am on the right track or not).

#!/bin/bash
FILE="answer.txt"
file1="cat answer.txt"
print $file1

When I run this, I get

Warning: unknown mime-type for "cat" -- using "application/octet-stream"
Error: no such file "cat"
Error: no "print" mailcap rules found for type "text/plain"

What can I do to make this work?

Edit** When I change it to:

#!/bin/bash
    FILE="answer.txt"
    file1=$(cat answer.txt)
    print $file1

I get this instead:

Warning: unknown mime-type for "This" -- using "application/octet-stream"
Warning: unknown mime-type for "text" -- using "application/octet-stream"
Warning: unknown mime-type for "string" -- using "application/octet-stream"
Warning: unknown mime-type for "should" -- using "application/octet-stream"
Warning: unknown mime-type for "be" -- using "application/octet-stream"
Warning: unknown mime-type for "a" -- using "application/octet-stream"
Warning: unknown mime-type for "varible." -- using "application/octet-stream"
Error: no such file "This"
Error: no such file "text"
Error: no such file "string"
Error: no such file "should"
Error: no such file "be"
Error: no such file "a"
Error: no such file "varible."

When I enter cat answer.txt it prints out this text string should be a varible like it should but, I still can't get the bash to do that with the varible.

Upvotes: 68

Views: 169491

Answers (4)

glenn jackman
glenn jackman

Reputation: 247210

In bash, $(< answer.txt) is equivalent to $(cat answer.txt), but built in and thus faster and safer. See the bash manual.

I suspect you're running this print:

NAME  
    run-mailcap, see, edit, compose, print − execute programs via entries in the mailcap file

Upvotes: 109

Weihang Jian
Weihang Jian

Reputation: 8755

Use command substitution with caution because it removes trailing new lines that makes the variable and the input file not identical, for example:

$ printf 'a\n\n' > input.txt
$ md5 < input.txt
94364860a0452ac23f3dac45f0091d81
$ x=$(cat input.txt)
$ printf %s "$x" | md5
0cc175b9c0f1b6a831c399e269772661
$ printf %s "$x" | od -ta
0000000    a                                                            
0000001

To make the file and the variable identical, add an extra byte and then remove it later:

$ x=$(cat input.txt && echo .)
$ x=${x%.}
$ printf %s "$x" | md5
94364860a0452ac23f3dac45f0091d81
$ printf %s "$x" | od -ta
0000000    a  nl  nl                                                    
0000003

Upvotes: 3

harpo
harpo

Reputation: 43218

The $() construction returns the stdout from a command.

file_contents=$(cat answer.txt)

Upvotes: 47

Jeffrey Theobald
Jeffrey Theobald

Reputation: 2617

You need the backticks to capture output from a command (and you probably want echo instead of print):

file1=`cat answer.txt`
echo $file1

Upvotes: 94

Related Questions