mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-12-15 15:59:11 -05:00
Reorganized
This commit is contained in:
parent
ab54dc8e70
commit
2afd831662
281 changed files with 253 additions and 33 deletions
5
Other_Hackings/useful_scripts/untar_bz2_script.sh
Executable file
5
Other_Hackings/useful_scripts/untar_bz2_script.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
for file in *.tar.bz2;
|
||||
do mkdir -p "${file}-extracted";
|
||||
tar --directory "${file}-extracted" -xjf "${file}";
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue