Я хочу добавить переменную в конец определенной строки в файле file.txt . Мой код до сих пор:

#!/bin/bash    
read -p "What is the path of the repo? > " input
echo :$input  >> file.txt

Я хочу добавить его в конец строки 2. Например,

file.txt
--------
before -
1.stuff 
2./home/retep/awesome

after -
1.stuff
2./home/retep/awesome:/home/retep/cool

1 ответ1

0

Это еще один вкладыш для awk:

#!/bin/bash    
read -p "What is the path of the repo? > " input

awk -v addition="$input" -v targetline=2 '
NR==targetline { print $0 ":" addition; next}
{print }' file.txt > file.tmp
mv file.tmp file.txt

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .