OS/Linux_ubuntu

[OS] Linux command meaning (Basic)

눈곱만큼도모름 2023. 7. 12. 02:01
728x90
반응형
command meaning    
pwd Print Working Directory 현재 작업중인 디렉토리 출력  
cd Change Directory 디렉토리 변경  
ls List 디렉토리 내용 나열  
mkdir Make Directory 디렉토리 생성  
mv Move {파일,디렉토리}의  {이동,이름} 변경  
cp Copy {파일, 디렉토리} 복사  
su Switch Urser 사용자전환  
sudo Superuser Do 현재유저로서 강력한 권한을가지고 
명령 실행
 
clear      
man manual    
echo echoes and prints 화면에 프린트 echo "Hello" > filename
chmod change mode    
cat catenate    
rm remove 폴더나 파일 삭제 rm example.txt
rmdir 폴더이름
rm -r 폴더이름
touch     touch filename
vim     vim filename
nano     nano filename
       
       
       

 

Argument

command meaning    
-r, -R Recursive 하위 디렉토리 포함 재귀적인 동작  
-l Long Format 자세한 형식 출력  
-a All 모든 {파일, 디렉토리}  
-f Force 강제실행  
-t timestamp    
-p parents    
-F classify Is와 사용 파일과 디렉토리구분  
(touch) -c compare
   
(rm) -i interactive     

 

. - 현재 디렉토리 의미
- 파일이름 앞에 적으면( .file) 숨긴파일의미
   
.. - 상위 디렉토리    
 ~ - 현재 위치    
 $ - 일반사용자    
# - 관리자  su - root  
 q      
 q!  강제종    

vim, shell script

command meaning    
yy yank    
p paste    
n next 뒤방향으로 커서를위치(앞을 N)  
o open line    
a append    
se nu set number    
%s substitute    
expr expression    
       

 

less than
greater than
less than or equal to
greater than or equal to
equal to
not equal to

728x90
반응형