mirror of
https://github.com/Phantop/dotfiles
synced 2025-01-09 13:46:49 +00:00
7 lines
119 B
Bash
Executable file
7 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
DIR=/tmp/.dwarf_$(basename $@ .dwarfs)$RANDOM
|
|
mkdir $DIR
|
|
echo $DIR
|
|
dwarfs -f $@ $DIR 2> /dev/null
|
|
rmdir $DIR
|