This commit is contained in:
TomasM
2017-10-19 11:19:34 -04:00
parent 8a23f45d14
commit 4342081e9a
3 changed files with 15 additions and 1 deletions
Executable
+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
View File