mvコマンドのアクションをシミュレートする


13

ファイルを移動しているので、mv入力するコマンドが正しいことを確認してから実行します。

apt-get使用していた場合、-sフラグを使用して実際に何でもできるシミュレーションを実行できます。

DOESは、mv同様の機能を持っている、それはファイルの移動をシミュレートするが、実際には何もしないだろうか?


2
man mv私は-i-flag のみを見ることができ、上書きする前に尋ねる
ケフInski

2
mvコマンドにはsimulatething がありませんが、そのようなチェックを行う関数を書くことができます。その解決策はどうですか?
セルギーKolodyazhnyy

2
そして、シミュレーションはどのようなものになると期待していますか?「a.txtをb、txtに名前変更しました」または「/home/you/a.txtを/home/you/Documents/a.txtに移動しました」など、変更したファイルごとに1行を簡単に印刷しますか?
バイトコマンダー

@ByteCommanderそうですね。私は、プライベートssl証明書を移動して整理するときに間違いを犯すことを単に妄想しています。
starbeamrainbowlabs

4
-nオプションmvあなたは間違いなく、その答えによって、任意のファイルを上書きしますが、常に知っておくと便利なことができないようになります。
-Arronical

回答:


2

このスクリプトは、トリックを行う必要があります。複数のソースファイル/ディレクトリも処理できます。使用するのと同じ方法で使用しますmv- mvsim source... dest。オプションに注意を払ったり、オプションを除外したり(単にファイル名として扱う)し、シンボリックリンクではうまく機能しない可能性があることに注意してください。

#!/bin/bash

if [ $# -lt 2 ]; then
    echo "Too few arguments given; at least 2 arguments are needed."
    exit 1
fi

lastArg="${@:$#}"

i=1
for param in "$@"; do
    if [ ! -e "$param" -a $i -lt $# ]; then
        echo "Error: $param does not exist."
        exit 1
    elif [ "$param" = "$lastArg" -a $i -lt $# ]; then
        echo "Error: $param is the same file/directory as the destination."
        exit 1
    fi
    ((i++))
done

if [ $# -eq 2 ]; then # special case for 2 arguments to make output look better
    if [ -d "$1" ]; then
        if [ -d "$2" ]; then
            echo "Moves directory $1 (and anything inside it) into directory $2"
            exit 0
        elif [ ! -e "$2" ]; then
            echo "Renames directory $1 to $2"
            exit 0
        else
            echo "Error: $2 is not a directory; mv cannot overwrite a non-directory with a directory."
            exit 1
        fi
    else
        if [ -d "$2" ]; then
            echo "Moves file $1 into directory $2"
        elif [ -e "$2" ]; then
            echo "Renames file $1 to $2, replacing file $2"
        else
            echo "Renames file $1 to $2"
        fi
        exit 0
    fi
elif [ ! -e "$lastArg" ]; then
    echo "Error: $lastArg does not exist."
    exit 1
elif [ ! -d "$lastArg" ]; then
    echo "Error: $lastArg is not a directory; mv cannot merge multiple files into one."
    exit 1
fi

argsLeft=$#
echo "Moves..."
for param in  "$@"; do
    if [ $argsLeft -eq 1 ]; then
        echo "...Into the directory $param" # has to be a directory because -f $lastArg was dealt with earlier
        exit 0
    fi
    if [ -d "$param" ]; then
        if [ ! -d "$lastArg" ]; then
            echo "Error: $lastArg is not a directory; mv cannot overwrite a non-directory with a directory."
            exit 1
        fi
        if [ $argsLeft -eq $# ]; then
            echo "The directory ${param} (and anything inside it)..."
        else
            echo "And the directory ${param} (and anything inside it)..."
        fi
    else
        if [ $argsLeft -eq $# ]; then
            echo "The file ${param}..."
        else
            echo "And the file ${param}..."
        fi
    fi
    ((argsLeft--))
done

いくつかの例:

$ ls
dir1  dir2  file1  file2  file3  mvsim
$ ./mvsim file1 file2
Renames file file1 to file2, replacing file file2
$ ./mvsim file1 newfile
Renames file file1 to newfile
$ ./mvsim file1 dir1
Moves file file1 into the directory dir1
$ ./mvsim file1 file2 file3 dir1
Moves...
The file file1...
And the file file2...
And the file file3...
...Into the directory dir1
$ ./mvsim file1 file2 dir1 dir2
Moves...
The file file1...
And the file file2...
And the directory dir1 (and anything inside it)...
...Into the directory dir2
$ ./mvsim file1 file2 file3 # error - file3 isn't a directory
Error: file3 is not a directory; mv cannot merge multiple files into one.
$ ./mvsim -f -i file1 dir1 # options aren't parsed or filtered out
Error: -f does not exist.

ありがとう!Sergが3つ以上の引数を扱っているため、Sergが書いたスクリプトに対する回答としてこれを受け入れています。maybe見た目もいいですが、現時点ではこれがより安全なオプションだと思います。
starbeamrainbowlabs

10

以下の機能は、mv構文を詳細にチェックするためのものです。SOURCEとDESTINATIONの2つの引数に対してのみ機能し、-tフラグをチェックしないことに注意してください。

関数はに配置され~/.bashrcます。すぐに使用するには、新しいターミナルを開くか、実行してくださいsource ~/.bashrc

mv_check()
{
    # Function for checking syntax of mv command 
    # sort of verbose dry run
    # NOTE !!! this doesn't support the -t flag
    # maybe it will in future (?)

    # check number of arguments  
    if [ $# -ne 2   ]; then
        echo "<<< ERROR: must have 2 arguments , but $# given "
        return 1
    fi

    # check if source item exist
    if ! readlink -e "$1" > /dev/null 
    then
        echo "<<< ERROR: " "$item" " doesn't exist"
        return 1
    fi

    # check where file goes

    if [ -d "$2"  ]
    then
        echo "Moving " "$1" " into " "$2" " directory"
    else
        echo "Renaming "  "$1" " to " "$2" 
    fi

}

以下にいくつかのテストを実行します。

$> mv_check  TEST_FILE1  bin/python                                                                                      
Moving  TEST_FILE1  into  bin/python  directory
$> mv_check  TEST_FILE1  TEST_FILE2                                                                                      
Renaming  TEST_FILE1  to  TEST_FILE2
$> mv_check  TEST_FILE1  TEST_FILE 2                                                                                     
<<< ERROR: must have 2 arguments , but 3 given 
$> mv_check  TEST_FILE1  TEST_FILE\ 2                                                                                    
Renaming  TEST_FILE1  to  TEST_FILE 2
$> mv_check  TEST_FILE1  "TEST_FILE 2"                                                                                   
Renaming  TEST_FILE1  to  TEST_FILE 2
$> mv_check  TEST_FILE1                                                                                                  
<<< ERROR: must have 2 arguments , but 1 given 

1
ay / nを追加して、実際のmvを呼び出す必要があります。;)
チャスケス

6

と呼ばれるgithub上のプログラムがあります 多分とます。これはあなたが探しているものかもしれません

プロジェクトの説明によると、 maybe

...コマンドを実行し、実際に実行しなくてもファイルに対して何が行われるかを確認できます!リストされた操作を確認した後、これらのことを本当に実行するかどうかを決定できます。

だから、それは他のプログラムがあなたのファイルに何をするのかを示すだけでなく、 mv

maybePythonを実行する必要がありますが、それは問題ではないはずです。Pythonのパッケージマネージャーpipを使用して、簡単にインストールまたはビルドできます。

インストールプロセスとプログラムの使用方法は、どちらもプロジェクトのホームページに記載されています。残念ながら、現時点ではLinuxシステムにアクセスできないため、プログラムの使用例は提供できません。


ドキュメンテーションによると、「maybe信頼できないコードを実行するために決して使用しないでください」ということです。
grooveplex

@grooveplex mvシステムでの実装を信頼していませんか?
maddin45

はい、そうしますが、それはヘッズアップとしてのものでした
グルーブプレックス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.