Доброго!
Есть текст:
~ $ cat -A intext
This is string one$
This is string two$
This is string three$
$
Когда я пытаюсь вставить его из буфера обмена в ответ на первое приглашение скрипта,
~ $ cat ./1234
#!/bin/bash
echo "Текст1?"
read text1
echo "Текст2?"
read text2
echo text1=$text1
echo text2=$text2
~ $ ./1234
Текст1?
This is string one
This is string two
This is string three
Текст2?
text1=This is string one
text2=This is string two
~ $ This is string three
This: команда не найдена