7 lines
82 B
Bash
Executable file
7 lines
82 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo Extracting $1
|
|
chmod a+x $1
|
|
$1 --appimage-extract
|
|
echo Finished
|
|
|