我是 macosx 上的 shell 编程新手,有一点问题。我编写了以下 shell 脚本:
#!/bin/sh
function createlink {
source_file=$1
target_file="~/$source_file"
if [[ -f $target_file ]]; then
rm $target_file
fi
ln $source_file $target_file
}
createlink ".netrc"
当我执行此脚本时,我收到消息ln: ~/.netrc: No such file or directory我不知道为什么会这样!你看到错误了吗?谢谢!