47
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ファイル名がドットから始まるファイルをまとめて cp や mv できないときの対処方法

Posted at

cpmv* (ワイルドカード) を使ってまとめて扱いたいときに、ファイル名がドットから始まるファイルがスルーされてしまいました。スルーされないようにするには下記のコマンドを使います。

shopt -s dotglob

その後はこれまで通り cp mv を実行すれば効力が発揮されます。

mv /path/to/directory/* /path/to/target/

shopt コマンドとは

shopt コマンドはシェルのオプションを変更することができるコマンドで、-s は後続のオプションをセットするオプション、dotglob はセットするとファイル名展開の際にファイル名がドットから始まるファイルも含むようになるオプションとのことです。
http://ss64.com/bash/shopt.html

下記を参考にしました。ありがとうございます。
http://askubuntu.com/questions/259383/how-can-i-get-mv-or-the-wildcard-to-move-hidden-files

47
40
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
47
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?