mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
7 lines
154 B
Bash
Executable file
7 lines
154 B
Bash
Executable file
#!/bin/sh
|
|
DIR=~/dwarf/$(basename $@ .dwarfs)$RANDOM
|
|
mkdir -p $DIR
|
|
echo $DIR
|
|
dwarfs -o offset=auto -f $@ $DIR 2> /dev/null
|
|
rmdir $DIR ~/dwarf 2> /dev/null
|