tar.Z 파일 linux에서 압축풀기

2020. 3. 17. 15:31오류

https://archive.ics.uci.edu/ml/datasets/Artificial+Characters

 

UCI Machine Learning Repository: Artificial Characters Data Set

Artificial Characters Data Set Download: Data Folder, Data Set Description Abstract: Dataset artificially generated by using first order theory which describes structure of ten capital letters of English alphabet Data Set Characteristics:   Multivariate Nu

archive.ics.uci.edu

data set을 얻을 수 있는 좋은 공간이죠!

 

이 중 artificial characters data set을 가져와보도록 하겠습니다.

 

이 data set은 tar.Z로 파일이 압축되어 있기 때문에 linux서버에서 압축을 풀도록 할게요.

 

아래와 같은 방법을 진행해주시면 압축이 풀립니다!

$ uncompress character.tar.Z
$ tar –xvf character.tar
$ cd murphy
$ unzip learn.zip
$ unzip test.zip

 

데이터 파일 개수 확인하기 

murphy/learn$ find ./ -type f |wc -l

murphy/test$ find ./ -type f |wc -l

728x90