diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-28 03:45:03 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-28 03:45:03 +0100 |
| commit | a7858cd5a4cd7311b681762924b189882ebccd76 (patch) | |
| tree | b603143e3e47e4013612b4be37bd2622762c7a54 /install_patterns.sh | |
| parent | 68e7a4b7f1f9bdf69ff92256123fb735583c61ba (diff) | |
| download | game_of_life-master.tar.gz game_of_life-master.tar.bz2 game_of_life-master.zip | |
Diffstat (limited to 'install_patterns.sh')
| -rwxr-xr-x | install_patterns.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/install_patterns.sh b/install_patterns.sh index 9e49fe8..88056c7 100755 --- a/install_patterns.sh +++ b/install_patterns.sh @@ -1,8 +1,7 @@ #!/bin/sh -mkdir patterns -curl www.conwaylife.com/patterns/all.zip > patterns/tmp.zip +mkdir -p patterns cd patterns -unzip tmp.zip -rm tmp.zip - +curl https://www.conwaylife.com/patterns/all.zip > tmp.zip \ + && unzip tmp.zip && rm tmp.zip +cd .. |
