14 lines
327 B
Bash
Executable File
14 lines
327 B
Bash
Executable File
#!/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
|