mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 06:22:34 +00:00
10 lines
377 B
Text
10 lines
377 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
svn checkout http://hash-identifier.googlecode.com/svn/trunk/ hash-identifier-read-only
|
||
|
chmod 755 hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py
|
||
|
fromdos hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py || dos2unix hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py
|
||
|
|
||
|
mkdir -p bin
|
||
|
cd bin
|
||
|
ln -s ../hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py ./hash_id.py
|