Created
December 25, 2011 22:37
-
-
Save ainame/1519859 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 01_というプリフィックスをつけたファイルを用意 | |
| mbp:~ namai$ echo "a" > 01_a | |
| mbp:~ namai$ echo "b" > 01_b | |
| # コピー先のディレクトリを用意 | |
| mbp:~ namai$ mkdir desti | |
| # $ cp 01_* desti/ と打とうとしたら...間違って途中エンター押しちゃった | |
| mbp:~ namai$ cp 01_* | |
| # 中を見るとどっちも同じファイルに・・・ | |
| mbp:~ namai$ cat 01_a | |
| a | |
| mbp:~ namai$ cat 01_b | |
| a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment