3
bash heredoc에서 변수 사용
bash heredoc 내부의 변수를 보간하려고합니다. var=$1 sudo tee "/path/to/outfile" > /dev/null << "EOF" Some text that contains my $var EOF 예상대로 작동하지 않습니다 ( $var문자 그대로 처리되고 확장되지 않음). sudo tee파일을 만들려면 sudo 가 필요하기 때문에 사용해야 합니다. 같은 일을 : sudo cat > /path/to/outfile <<EOT my text... EOT >outfilesudo를 …