Mercurial > ec-dotfiles
view bin/linux-drive-number-mapping @ 749:3cacb4270864 default tip
[bashrc] hg grep now does the expected thing, no need for custom alias
| author | nanaya <me@nanaya.net> |
|---|---|
| date | Tue, 02 Sep 2025 22:43:45 +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}')
