Mercurial > ec-dotfiles
view bin/linux-drive-number-mapping @ 719:bcdf320dabf4
Rewrite the ed2k again in php
Getting openssl to hash md4 is a pain.
| author | nanaya <me@nanaya.net> | 
|---|---|
| date | Sun, 10 Dec 2023 00:35:22 +0900 | 
| parents | f579b5310a1b | 
| children | 
line wrap: on
 line source
#!/bin/sh # Stolen from http://superuser.com/questions/617192 [ "$(uname)" = "Linux" ] || exit 1 ata=$1 ls -l /sys/block/sd* | grep $(grep $ata /sys/class/scsi_host/host*/unique_id | awk -F'/' '{print $5}')
