Linux CLI - Archiving and Compression
What is the output of the following commands?
echo "Test" > file.txt xz -k file.txt ls file.txt*
echo "Test" > file.txt xz -k file.txt ls file.txt*
xz -k file.txt-k option keeps the original file, so both file.txt and compressed file.txt.xz exist.file.txt*file.txt and file.txt.xz.xz -k keeps original = both files present [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions