window下解壓zip和rar檔案以及copy獲取時間段內資料

一隻勤奮愛思考的豬發表於2018-08-15


.zip 和 .rar 是Windows下常用的壓縮檔案,在Ubuntu中如何解壓?

 

【解壓.zip檔案】

Ubuntu中貌似已經安裝了unzip軟體,解壓命令如下:
1
	
unzip  ./FileName.zip

如果沒安裝unzip的話,可以通過如下命令安裝:
1
	
sudo apt-get install unzip

 

【解壓.rar檔案】 

#安裝unrar軟體#
1
	
sudo apt-get install unrar

#解除安裝unrar軟體#
1
	
sudo apt-get remove unrar

#解決.rar檔案#
1
	
unrar x ./FileName.rar

$unrar --help

用法: unrar <command> -<switch 1> -<switch N> <archive> <files...>
        <@listfiles...> <path_to_extract\>

<命令>
  e             解壓檔案到當前目錄
  l[t,b]        列出壓縮文件資訊[technical, bare]
  p             列印檔案到標準輸出
  t             測試壓縮我俄當
  v[t,b]       列出壓縮文件的詳細資訊[technical,bare]
  x             解壓檔案到完整路徑 

所以,常用unrar命令為

    unrar x ./FileName.rar



(2)
 \copy shixin_offline_predict_results to /home/scdata/all_model_train_data/shixin/shixin_offline_predict_results.csv with csv header;



\copy (select * from t_companies_features where update_at  between to_date('2018-08-01','yyyy-MM-dd') and to_date('2018-08-15','yyyy-MM-dd')) to '/home/sc/PycharmProjects/sc/model-feature-engine/test_risk_model_features/test_revoke_5000_com.csv' with csv header;

相關文章