缺少目标文件操作数Linux

时间:2018-12-13 22:09:41

标签: linux bash unix command line

我在Linux命令行中绝对是绿色的,无法通过以下脚本进行操作:

read answer
case "$answer" in #starting a loop

1)
echo "Type the name of the script: "
read $a1
    while [ ! -f $a1 ]
    do
        echo "$a1 is not valid"
    read $a1
    done
    sudo cp -a $HOME/$a1 $HOME/$a1'backup'$(date "+_%d_%m_%Y")
    ;;

这给了我以下错误: cp:无法将目录“ / home / ubuntu /”复制到自身“ / home / ubuntu / backup_13_12_2018 / ubuntu”

我想做的是在同一目录中创建带有时间戳的脚本副本。

0 个答案:

没有答案