LINCS DB, perturbation data, 데이터 다운로드 및 R로 불러오기
🎀Installation
From source code
🌳 tree homepage & downlaod 👉link
1
2
3
4
5
6
7
tar -xvf unix-tree-2.1.1.tar.bz2
cd unix-tree-2.1.1
make PREFIX=/source/unix-tree-2.1.1
# bashrc에 path설정 추가
echo -e "PATH=/source/unix-tree-2.1.1:$PATH" >> ~/.bash_profile
source ~/.bash_profile
Using yum (Linux)
1
sudo yum install tree
Using brew (Mac)
1
brew install tree
🎀Usage
-L
: level depth, 뒤에 숫자 붙여서 얼마나 안쪽까지 본건지 결정-d
: directory만 표시, file은 제외-f
: file경로로 표시-a
: 숨김파일 포함 전체 파일 표시-i
: indentation line 없이 표시. line이 안나옴.-f
랑 같이 쓰면 좋음-p
: file의 권한을 함께 보여줌 e.g. drwxr-sr-x
Example
1
2
3
tree -L 2
tree -L 3 -d
tree -L 3 -f
This post is licensed under CC BY 4.0 by the author.