move slax scripts to rootcopy, fix linux->slax renaming

This commit is contained in:
TomasM
2017-11-15 15:54:13 -05:00
parent c5efc53848
commit 5de4405b68
5 changed files with 1 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# convert .sb compressed Slax Bundle file into directory tree
# Author: Tomas M. <http://www.slax.org/>
#
if [ ! -d "$2" ]; then
echo
echo "Convert .sb compressed module into directory tree"
echo "usage: $0 source_file.sb existing_output_directory"
exit 1
fi
unsquashfs -f -dest "$2" "$1" >/dev/null