我正在学习bash,我有一个关于如何在用户输入“0”时将文件从父文件夹复制到另一个文件夹的问题。 (例如从K2到K1)我不知道该怎么做。
#!/bin/bash
echo $1 $2 $3 $4
K1=$1
K2=$2
if [ $4 -eq "0" ] then
cp -v ../$2/*.{png,bmp,jpg,xcf,pcx} .
cp -v ../$2/*.{png,bmp,jpg,xcf,pcx} ./$1
fi
这就是我写的所有内容,你能帮帮我吗?
答案 0 :(得分:0)
可能的脚本:
#!/bin/bash
echo -n "Type your number: "
read ANSWER
if [ "$ANSWER" == "0" ] ; then
# Put here your cp commands
fi