Linux command learning record
- stat : this command will display the status information of a file
- wc -l : count the amount of lines in the objective file
- wc -w : count the amount of words in the objective file
- wc -c : count the amount of characters in the objective file
- head -n [ 10] : display the first 10 lines of the objective file
- tail -n [10] : display the last 10 lines of the objective file
- tail -f : automatically outputs appended contents of the objective file