diff options
| author | Lugixion <32132868+Lugixion@users.noreply.github.com> | 2022-02-24 21:47:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-24 21:47:33 +0000 |
| commit | 0fec4e8f6b8ea512cda556cb9a1e53b23d111dae (patch) | |
| tree | 7e63a83d4368295d08decd7cd55ef28fa31dd583 /README.md | |
| parent | 638d65e51fafb366709509bd10fce50f158af207 (diff) | |
Fix error
Code was giving an error because of the [a-zA-ZA-z], the A-z was giving trouble.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ If the original game updates, here is how you can update the mirror: from the `/img/` directory : * `wget --convert-links -O index.html http://orteil.dashnet.org/cookieclicker/img/` -* `grep -v PARENTDIR index.html | grep -o '/img/*[a-zA-ZA-z]*.*"' | sed 's/\/img\///' | sed 's/"//' >list.txt` +* `grep -v PARENTDIR index.html | grep -o '/img/*[a-zA-Z]*.*"' | sed 's/\/img\///' | sed 's/"//' >list.txt` * `wget -N -i list.txt -B http://orteil.dashnet.org/cookieclicker/img/` #### 2. Fetch all new sounds : @@ -23,7 +23,7 @@ from the `/img/` directory : Similarly, from the `/snd/` directory : * `wget --convert-links -O index.html http://orteil.dashnet.org/cookieclicker/snd/` -* `grep -v PARENTDIR index.html | grep -o '/snd/*[a-zA-ZA-z]*.*"' | sed 's/\/snd\///' | sed 's/"//' >list.txt` +* `grep -v PARENTDIR index.html | grep -o '/snd/*[a-zA-Z]*.*"' | sed 's/\/snd\///' | sed 's/"//' >list.txt` * `wget -N -i list.txt -B http://orteil.dashnet.org/cookieclicker/snd/` #### 3. Update `js` and `html` files : |