본문 바로가기

Unix/Linux

Command line2

  • Options modify the behavior of commands:
    • ls -a lists all contents of a directory, including hidden files and directories
    • ls -l lists all contents in long format
    • ls -t orders files and directories by the time they were last modified
    • Multiple options can be used together, likels -alt
  • From the command line, you can also copy, move, and remove files and directories:
    • cp copies files
    • mv moves and renames files
    • rm removes files
    • rm -r removes directories
  • Wildcards are useful for selecting groups of files and directories


'Unix/Linux' 카테고리의 다른 글

Housekeeping?  (0) 2015.11.08
쉘 프로그래밍 기초 이해  (0) 2015.07.26
쉘/커널/배쉬  (0) 2015.07.23
Command line  (0) 2015.07.21