mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 04:18:51 +00:00
19 lines
374 B
Bash
Executable file
19 lines
374 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo ''
|
|
echo "----------------------------------------------"
|
|
echo "Uninstall nu and all plugins from cargo/bin..."
|
|
echo "----------------------------------------------"
|
|
|
|
NU_PLUGINS=(
|
|
'nu_plugin_inc'
|
|
'nu_plugin_gstat'
|
|
'nu_plugin_query'
|
|
'nu_plugin_example'
|
|
)
|
|
|
|
cargo uninstall nu
|
|
for plugin in "${NU_PLUGINS[@]}"
|
|
do
|
|
cargo uninstall $plugin
|
|
done
|