mirror of
https://github.com/Phantop/dotfiles
synced 2025-01-15 00:58:02 +00:00
7 lines
134 B
Bash
Executable file
7 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
DIR=/tmp/.dwarf_$(basename $@ .dwarfs)$RANDOM
|
|
mkdir $DIR
|
|
echo $DIR
|
|
dwarfs -o offset=auto -f $@ $DIR 2> /dev/null
|
|
rmdir $DIR
|