Skip to content

Instantly share code, notes, and snippets.

@zhangyoufu
Created October 24, 2025 07:41
Show Gist options
  • Select an option

  • Save zhangyoufu/6a30db9673683df5307faed7fb599fac to your computer and use it in GitHub Desktop.

Select an option

Save zhangyoufu/6a30db9673683df5307faed7fb599fac to your computer and use it in GitHub Desktop.
#!/bin/bash
shopt -s nullglob
cd /sys/class/nvme
for CTRL in *; do
echo "removing ${CTRL}"
echo 1 >"${CTRL}/device/remove"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment