8 lines
282 B
Bash
Executable File
8 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#XZ_OPT=-e9T0 tar -cJf liveuser.tar.xz liveuser
|
|
tar -cf - liveuser | xz -e -9 -T0 -c - > liveuser.tar.xz
|
|
|
|
echo "melawy" | beep -f 200 -l 250 -d 100 -r 1 -n -s
|
|
notify-send -a "$(basename $(pwd)): Compress" -t 999999999 "Compress finished" "$(date '+%Y.%m.%d %H:%M:%S')"
|