Mac 在終端下使用 zcat 報錯,改用`gunzip -c`
阿新 • • 發佈:2018-11-06
出現問題:
Mac在使用zcat
的時候,不能正常的讀取壓縮包的內容,情況如下:
NgandeMBP:scripts kungs$ zcat /data/codes/django.tar.gz
zcat: can't stat: /data/codes/django.tar.gz (/data/codes/django.tar.gz.Z): No such file or directory
這種結果是因為強制給你的檔案字尾加上 .Z ,故讀取不了。
解決辦法:
使用gunzip -c
替代zcat
就可以解決。
NgandeMBP:scripts kungs$ gunzip -c /data/codes/django.tar.gz django/000755 000765 000024 00000000000 13366564475 012635 5ustar00kungsstaff000000 000000 django/views.py000644 000765 000024 00000000317 13366564475 014345 0ustar00kungsstaff000000 000000 from django.shortcuts import render from django.http import HttpResponse # Create your views here. # 定義函式,接受請求,返回字串 def hello(request): return HttpResponse("kungs V1.3")