0
私はこのファイルをコマンドラインから直接awkすることができますが、スクリプトから使用しようとすると壊れます。理由は分かりません。 Heres私のスクリプトBashスクリプトは、awk:〜/ .ssh/configファイルを開くことができません。
#!/bin/bash
ssh_config_path="~/.ssh/config"
echo -n "Enter the username of the account you'd like to switch to > "
read username
awk '
!x{x=sub(/github-secondary/,"github.com")}
!y{y=sub(/github\.com/,"github-secondary")}
1' $ssh_config_path
どこで '$ username'を読み込みコマンドから使いますか? – Cyrus
haventまだ使用されていません –