Skip to main content

Questions tagged [here-string]

A special, more compact form of the here-document consisting of <<< followed by a single WORD.

Filter by
Sorted by
Tagged with
4 votes
3 answers
721 views

The 'here string' (<<<) is a useful construct, and can be used in lieu of echo in many situations. However, when calculating a hash (as one example) the addition of a newline character ...
Seamus's user avatar
  • 3,896
2 votes
1 answer
170 views

I have a variable foo_var which contains ASCII text (base64 text, with some additional text which includes dashes, spaces, and underscores). I write this var to a file as follows: cat <<<&...
QF0's user avatar
  • 391
5 votes
3 answers
2k views

I have this command to run a checksum in some software I want to install: echo "85762db0edc00ce19a2cd5496d1627903e6198ad850bbbdefb2ceaa46bd20cbd install.sh" | sha256sum -c But I would like ...
Cnnewb's user avatar
  • 51
-1 votes
2 answers
482 views

If I run: IFS=':' cat <<< $(echo $PATH) then the ":" are used for word splitting and the output contains spaces instead of ":", but if I run: echo $PATH | IFS=':' cat ...
Allen's user avatar
  • 206
-2 votes
2 answers
719 views

Here is what I am trying to do: docker exec -it $1 /bin/bash <<< $CONTAINER_ID But this doesn't work: Output: "docker exec" requires at least 2 arguments. It seems that <<...
Anton Kuznetsov's user avatar
7 votes
3 answers
2k views

Please, observe: $ diff <(echo a) <<<b diff: missing operand after '/dev/fd/63' diff: Try 'diff --help' for more information. I know <(...) works fine: $ diff <(echo a) <(echo b) ...
mark's user avatar
  • 379
1 vote
1 answer
245 views

I have this script: while read $item; do # Some bash logic here done <<< "$({ cat /path/to/some/file; echo; })" Now I want to also use find to find the name of some directories,...
Saeed Neamati's user avatar
0 votes
1 answer
65 views

The - option to mark a here document limit string (<<-LimitString) will suppress leading tabs (but not spaces) in the output. What I'm wondering is why someone would want to remove the leading ...
thinksinbinary's user avatar
1 vote
2 answers
463 views

I have a script similar to this: #!/bin/bash set -euo pipefail IFS=$'\n\t' while read -r l; do echo "${l}" done <<< "$(cat input.txt)" echo Success The command cat ...
Thomas Leplus's user avatar
2 votes
0 answers
139 views

The default behaviour of the GNU rm command when asked to delete write-protected files is to interactively ask whether the user wants to delete each of the files. This is quite inconvenient in many ...
leftaroundabout's user avatar
2 votes
1 answer
279 views

After updating sed to 4.4 version, sed doesn't replace spaces with commas in the output of find command given to it as here-string: sed --version sed (GNU sed) 4.4 ls -l /tmp/test/ total 0 -rw-r--r-- ...
rokpoto.com's user avatar
6 votes
2 answers
1k views

If you want to read the single line output of a system command into Bash shell variables, you have at least two options, as in the examples below: IFS=: read user x1 uid gid x2 home shell <<<...
FedKad's user avatar
  • 618
3 votes
1 answer
501 views

I am trying to redirect the output of a python script as an input into an interactive shell script. test.py print('Hello') print('world') Say test.py is as above prints "Hello world" which ...
ragul rangarajan's user avatar
1 vote
2 answers
608 views

I am trying to pass one liner sshpass command to Solaris box but won't work. those are the options I tried: sshpass -p "passw" ssh "[email protected]" -o StrictHostKeyChecking=no `...
dwt.bar's user avatar
  • 145
2 votes
2 answers
2k views

I am trying to output tee while writing to a custom file descriptor. Example: exec 4>"/tmp/testfile.txt"; # open FD 4 tee -a >&4 <<< "Output this to stdout" # ...
kon's user avatar
  • 123
4 votes
1 answer
5k views

Look at this very basic Bash script: #!/bin/bash while read l do echo $l echo "next one" done <<< $(ps aux) I have several processes on my computer, and the ps aux command works fine in ...
Bob5421's user avatar
  • 173
0 votes
0 answers
286 views

At my job, the only way that I can switch users is by doing the following: sudo su - *USER* In order to run multiple commands as the user (in a script or something), I use here strings and here docs: ...
Brendan's user avatar
5 votes
1 answer
267 views

When I use the command cat <<< Hey > text.txt text.txt I expect it to write "Hey" in the file text.txt and then display the file. But there is no output. How is bash interpreting it ...
1zverg's user avatar
  • 331
0 votes
2 answers
458 views

Update I noticed that I am able to pass JSON with this command command -j /dev/stdin <<< '{"key":"value"}' However, it does not work if I call it through SSH. ssh {target} 'command -j /dev/...
Norman's user avatar
  • 139
-1 votes
2 answers
1k views

This is a follow up to this question; I don't know why but I keep misunderstanding the following code, although I try very hard to understand it: function read_and_verify { read -p "$1:" tmp1 ...
user avatar
-1 votes
2 answers
673 views

It seemed to me that the end of a here string is newline. I realize I am wrong: $ cat <<< hello world cat: world: No such file or directory What can signify the end of a here string?
Tim's user avatar
  • 107k
11 votes
1 answer
2k views

In bash, it seems to me both here document and here string can be used for providing strings as stdin inputs. here document may provide an extra features to specify delimiter, which I am not sure if ...
Tim's user avatar
  • 107k
6 votes
2 answers
1k views

I wanted to extract 3 words from a variable in 3 different variables in ksh script. I used this line on ksh93 and it worked fine: read A B C <<< $line Got this error for the above command ...
Pratik Mayekar's user avatar
19 votes
3 answers
30k views

[Note: This similar Q concerns the same bash error message. It's been marked a duplicate of this other Q. But because I found a very different source for this error, I will answer my own Q below.] ...
Elliptical view's user avatar
3 votes
3 answers
11k views

I tried these ways to append content to a file: printf "\nsource ~/script.sh" >> /etc/bash.bashrc echo -e "\nsource ~/script.sh" >> /etc/bash.bashrc cat >> "/etc/bash.bashrc" <&...
Arcticooling's user avatar
  • 4,523
12 votes
2 answers
4k views

Accidentially, I found out that wc counts differently depending on how it gets the input from bash: $ s='hello' $ wc -m <<<"$s" 6 $ wc -c <<<"$s" 6 $ printf '%s' "$s" | wc -m 5 $ ...
rexkogitans's user avatar
  • 1,359
2 votes
2 answers
1k views

I have this multilinie heredocument which I desire to translate into a uniline herestring: cat <<-"PHPCONF" > /etc/php/*/zz_overrides.ini [PHP] post_max_size = 200M upload_max_filesize ...
Arcticooling's user avatar
  • 4,523
4 votes
2 answers
14k views

I have some code similar to this: while read -r col1 col2 col3 col4 col5 col6 col7 col8 TRASH; do echo -e "${col1}\n${col2}\n${col3}\n${col4}\n${col5}\n${col6}\n" done< <(ll | tail -n+...
jesse_b's user avatar
  • 41.6k
-2 votes
3 answers
1k views

What will be an "elegant" one-line way to append a single line of data into the end of a file, with herestring, if this exact data isn't already in that file? This is my herestring append pattern: ...
Arcticooling's user avatar
  • 4,523
2 votes
3 answers
4k views

I have an application which requires a producer to send filenames to a consumer, and have producer indicate to the consumer when the last filename has been sent and the end of file has been reached. ...
Craig  Hicks's user avatar
4 votes
3 answers
8k views

This is my script: var="lalallalal" tee file.tex <<'EOF' text \\ text \\ $var EOF Need to use 'EOF' (with quotes) because I can not use double slash (//) otherwise. However, if I use the ...
Marcus's user avatar
  • 49
7 votes
2 answers
9k views

I desire to run a cat heredocument in a single row instead the natural syntax of 3 rows (opener, content, and delimiter). My need to do so is mostly aesthetic as the redirected content aimed aimed to ...
user avatar
11 votes
1 answer
2k views

Is there any real benefit to using bash -c 'some command' over using bash <<< 'some command' They seem to achieve the same effect.
yosefrow's user avatar
  • 419
3 votes
1 answer
3k views

Basically I want to check the difference of the same file before and after a sed Tried to run: diff /opt/postTrades.sh <<< $(sed 's/1\ MIN/10\ MIN/g' /opt/postTrades.sh) and diff <<&...
Moshe's user avatar
  • 322
5 votes
1 answer
17k views

I have $a and $b. I want to run diff on those. The best I have come up with is: diff <(cat <<<"$a") <(cat <<<"$b") But I have the district feeling that I am missing a clever ...
Ole Tange's user avatar
  • 37.6k
1 vote
1 answer
1k views

I have this code : HOSTS="host1 host2" For hostname in ${HOSTS} ; do ssh -tt ${USERNAME}@${hostname} << EOF HOSTSN="test" echo ${HOSTSN} exit EOF Done The variable HOSTSN is empty, can you ...
Issam's user avatar
  • 113
3 votes
2 answers
10k views

I'm simply trying to get the output from a sql statement and store in bash variable. I am getting " unexpected EOF while looking for matching `)' " error. I don't see what i'm doing wrong. Why am I ...
Eternal Punishment's user avatar
1 vote
0 answers
296 views

I wanted to use Here String in conjunction with custom type in KSH. Unfortunately I am not able to tell what I am doing wrong. #!/bin/ksh typeset -T Type_t=( typeset string='aaa' function fc { ...
Kamil's user avatar
  • 145
10 votes
4 answers
5k views

I create a file with tab-delimited fields. echo foo$'\t'bar$'\t'baz$'\n'foo$'\t'bar$'\t'baz > input I have the following script named zsh.sh #!/usr/bin/env zsh while read line; do <<<$...
Sparhawk's user avatar
  • 20.6k
1 vote
2 answers
4k views

To feed input to an interactive script, I've been using a here-string: script <<< $'1 2\n3 4\n5 6\nq' This effectively enters 1 2 3 4 5 6 q into the script. But how can I replace one of ...
snurden's user avatar
  • 315
2 votes
3 answers
1k views

How can extract lines that match the regexp string ^li from the text (not a file) below using sed or something? linux loan litmus launch I tried grep but I couldn't find a way to search within a ...
stacko's user avatar
  • 801
2 votes
1 answer
218 views

I need to write websocket server on GAWK. And server must handle user's Sec-WebSocket-Key by following algorithm (from RFC): Concat key with 258EAFA5-E914-47DA-95CA-C5AB0DC85B11 Take sha-1 in binary ...
vladimirg's user avatar