forked from sig_core/toolkit
12 lines
188 B
Bash
12 lines
188 B
Bash
|
#!/bin/bash
|
||
|
r_log "archive" "Testing znew"
|
||
|
|
||
|
TESTFILE=/var/tmp/znew.txt
|
||
|
/bin/rm $TESTFILE* &>/dev/null
|
||
|
|
||
|
ls -l /usr/bin > $TESTFILE
|
||
|
compress $TESTFILE
|
||
|
|
||
|
znew $TESTFILE.Z
|
||
|
r_checkExitStatus $?
|