UCAR Linux Tutorial
https://www.meted.ucar.edu/ucar/unix/ Key Commands : link
Basic Linux Commands
Read more: https://nicojourdain.github.io/students_dir/students_linux/
To get more details of commands:
man mv
man cp
man ls
Current directory:
pwd
Know your login:
whoami
Details in the directory:
ls : displays content of current directory
ls -la : list in alphabetic order
ls -ltr : list from oldest to most recent
| Syntax | Description |
|---|---|
| ls | displays content of current directory |
| ls -la | list in alphabetic order |
| ls -ltr | list from oldest to most recent |
Count the lines of .csv, .txt files on terminal
cat FILENAME.csv | wc -l