shell

Here-Document-Text über SSH an Remote-Datei ausgeben

In der Bash-Sprachen-Befehlszeile auf Linux PC/Server stellt dieser Artikel vor, wie man Here-Document-Text über SSH an eine Remote-Datei ausgibt.

Shou Arisaka
1 Min. Lesezeit
1. Nov. 2025

In der Bash-Sprachen-Befehlszeile auf Linux PC/Server stellt dieser Artikel vor, wie man Here-Document-Text über SSH an eine Remote-Datei ausgibt.

ubuntupc "cat <<< \"\$(</dev/stdin)\" >> ~/tmp.txt" <<< "hogehoge"

# oder

ubuntupc "cat <<< \"\$(</dev/stdin)\" >> ~/tmp.txt" <<< "$( cat << 'EOT'
hogehoge
EOT
)"
alias ubuntupc='ssh -v -X -L 8001:localhost:80     -L 4001:localhost:4001 -L 4002:localhost:4002 -L 4003:localhost:4003 -L 4004:localhost:4004 -L 4005:localhost:4005 -L 4006:localhost:4006 -L 4007:localhost:4007 -L 4008:localhost:4008     -R 52698:localhost:52698 [email protected]'

Verwendungsbeispiel


sendfunction(){

  : send locally defined functions or aliases to remote machine via ssh
  : e.g. sendfunction sharefile

[[ -z "${1:-isodate}" ]] && { error Empty argment[s] ; return 1 ; }

ubuntupc "cat <<< \"\$(</dev/stdin)\" >> ~/.bashrc" <<< "$( cat << EOT
$( types "${1:-isodate}" )
EOT
)"

}

Diesen Artikel teilen

Shou Arisaka 1. Nov. 2025

🔗 Links kopieren