1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-12 05:06:28 +00:00
dotfiles/.local/bin/foldwarf

19 lines
267 B
Plaintext
Raw Normal View History

#!/bin/sh
H=/tmp/folheader
echo '#!/bin/sh' > $H
echo D=$@ >> $H
cat >> $H <<'EOF'
if [ ! -d $D ]; then
mkdir $D
dwarfs -o offset=auto "$0" $D
else
fusermount -u $D
rmdir $D
fi
exit
EOF
mkdwarfs -i . -o "$PWD.sh" --header $H
chmod +x "$PWD.sh"
rm $H