Bash 脚本,returns awk:无法打开文件 ~/.ssh/config
Bash script, returns awk: can't open file ~/.ssh/config
我可以直接从命令行 awk 这个文件,但是当我尝试从我的脚本中使用它时它会中断。不知道为什么。这是我的脚本
#!/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
引号 bash 不展开 ~
。我建议使用 $HOME
:
ssh_config_path="$HOME/.ssh/config"
我可以直接从命令行 awk 这个文件,但是当我尝试从我的脚本中使用它时它会中断。不知道为什么。这是我的脚本
#!/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
引号 bash 不展开 ~
。我建议使用 $HOME
:
ssh_config_path="$HOME/.ssh/config"