Skip to content

Instantly share code, notes, and snippets.

@dragonman225
Last active January 9, 2020 23:57
Show Gist options
  • Save dragonman225/dfa02d5f7f5804f85eb43884b502becc to your computer and use it in GitHub Desktop.
Save dragonman225/dfa02d5f7f5804f85eb43884b502becc to your computer and use it in GitHub Desktop.
Turn off disks on Linux.
#!/bin/bash
lsblk
echo -e "Proceed to stop sda, sdc, sdd ? (y/n)"
read -p "> " answer
if [ $answer = "y" ]; then
echo 1 > /sys/block/sda/device/delete
echo 1 > /sys/block/sdc/device/delete
echo 1 > /sys/block/sdd/device/delete
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment