mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-25 01:42:24 -05:00
17 lines
482 B
Bash
17 lines
482 B
Bash
cd "$(dirname "$0")"
|
|
case $(uname -m) in
|
|
x86_64)
|
|
tar -taf x64/fuse-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f
|
|
tar -taf x64/fuse3-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f
|
|
;;
|
|
i686)
|
|
tar -taf x86/fuse-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f
|
|
tar -taf x86/fuse3-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f
|
|
;;
|
|
*)
|
|
echo unsupported architecture 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
echo FUSE for Cygwin uninstalled.
|