bashスクリプト:/ user / homeをバックアップする方法は?

bashスクリプト:/ user / homeをバックアップする方法は?

私は現在スクリプトについて学んでいますが、.bz2を使って/ user / homeをバックアップするスクリプトを作成する必要があります。ユーザーが存在するか、そのユーザーがバックアップ先として選択されていないことを確認するスクリプトが必要です。

#/bin/bash  
#Choose user to backup  
#choose compression method.

#End result
#user_20151126.tar.bz2

私のスクリプト:

#!/bin/bash
#Systema Date

DATE=$(date +%F)

#Selecting a username

echo "Select the user to backup: "

read USER

#Selecting the compression method

echo "Enter the compression method:"

echo "Type 1 for gzip"

echo "Type 2 for bzip"

echo "Type 3 for xz"

read METHOD

ベストアンサー1

そんなこと?

    #!/bin/bash
    if [ $# -ne 2 ]; then # $# - is a number of arguments if its not equal (-ne) to 2 then we print message below and exit script
        echo ${0}" [gzip|bzip2|xz] <user_name>"
        echo -e "\tProgram will create backup of users home directory"
        exit 0 # 0 is a return code of script
    fi
    case $1 in # $1 is first argument of script and case statement runs code depending of its content. for example: if $1 is equal to "gzip" then set method to "z" 
    "gzip" )
        method="z" ;;
    "bzip2" )
        method="j" ;;
    "xz" )
        method="J" ;;
    *)
        # if $1 is none of above then run this
        echo "Wrong method [gzip|bzip2|xz]"
        exit 1 # and exit with return code 1 which means error
        ;;
    esac
    if [ ! -d /home/$2 ]; then # id not(!) existing directory(-d) /home/login ($2 is the second argument of script) then
        echo "User not exists"
        exit 1
    fi
    tar -${method} -cf ${2}_$(date +%F).tar.${1} /home/${2}

より良い短いかもしれませんが、このコードはあなたに何かを教えます。 tar の詳細については、こちらをご覧ください。 http://linux.die.net/man/1/tar

おすすめ記事