1

所以我一直在开始编写 bash 脚本,并且我正在制作一个从源代码自动安装的脚本(所以本质上它只是为你编译 tarball)。我需要它来更改目录才能进入压缩包。但是,每当我使用此命令时

read path
cd $path

我总是收到错误tar-installer.sh: line 13: cd: ~: No such file or directory 对于任何需要它的人,这是完整的脚本......

#!/bin/bash
# This program auto-installs tarballs for you.
# I designed this for Linux noobies who don't
# know how to install tarballs. Or, it's for
# people like me who are just lazy, and don't
# want to put in the commands ourselves.

echo "Tar Installer v1.1"
echo "Gnu GPL v2.1"
echo -n "Path to tarball:"
read path
cd $path
echo -n "Please enter the file you wish to complile..."
read file
if  $file =="*.tar.gz"
then
    tar -xzf $file
   else
       $file =="*.tgz"
then
    tar -xzf $file
else
    $file =="*.tar.bz2"
then
    tar -xjf $file

带有 tarball 的最后一部分仍在进行中。但我使用的目录cd path~/Downloads/

这可能是一个简单的修复,但我不知道如何修复它。

4

2 回答 2

6

您需要用~主路径替换波浪号。如果不直接执行此扩展将失败。

 cd "${path/#~/$HOME}"

~使用 bash 的 replace 替换为您的主目录${value/search_term/replacement}

您可能还想结合 echo & read:

read -p "Path to tarball: " pathname

命名变量(如路径)时也要小心(PATH 是您的环境变量)

于 2016-07-02T02:01:58.537 回答
-2

因为“cd”是 bash 的内置函数。所以你应该尝试像这样运行你的脚本:

 #source tar-installer.sh

类似的问题在这里:

[1]:https://stackoverflow.com/questions/255414/why-doesnt-cd-work-in-a-bash-shell-script

于 2016-07-02T02:27:36.383 回答