mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 01:24:38 +01:00
20 lines
374 B
Bash
20 lines
374 B
Bash
|
#!/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
|