생물 정보 중 linux 상용 명령 (1)
ssh username@hostip
:ssh [email protected]
pwd
cd test
cd ../
ls
ll
ls -s
ls | wc -w
mkdir test
mkdir -p newdir/childdir
rm test
rm -rf test
rmdir -p childdir
touch test
mv test test1
mv test dir/ test dir
cp test test1
less test
less -S test
less -SN test
more test
head test
tail test
cat test
vi test
vim test
chmod 775 test
cut -f num1-num2 # num1 num2
Example :cut -c 1-10 file # file 10
cut -f 1-10 file # file 10 ( “\t” )
cut -d “ ” -f 2 # file
ln(link)
ln -s file1 file2
ln -s file1 file2 dirname/ # file1 file2 dirname
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Linux Makinalarda NFS Sunucu Mount Etme(데비안 및 RPM)Debian은 Red Hat 탭과 Linux NFS Sunucu 라이브러리를 모두 지원합니다. NFS 지불 방법은 클라이언트 제작자가 사용하지 않는 기본 설정을 유지하는 것입니다. Örnek verecek olurs...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.