TranslateProject/sources/tech/20150316 5 Interesting Command Line Tips and Tricks in Linux--Part 1.md
2015-03-16 17:08:47 +08:00

5.3 KiB
Raw Blame History

5 Interesting Command Line Tips and Tricks in Linux Part 1

Are you making most out of the Linux? There are lots of helpful features which appears to be Tips and Tricks for many of Linux Users. Sometimes Tips and Tricks become the need. It helps you get productive with the same set of commands yet with enhanced functionality.

5 Command Line Tips and Tricks 5 Command Line Tips and Tricks

Here we are starting a new series, where we will be writing some tips and tricks and will try to yield as more as we can in small time.

1. To audit the commands wed run in past, we use history command. Here is a sample output of history command.

# history

history command example history command example

Obvious from output, the history command do not output the time stamp with the log of last executed commands. Any solution for this? Yeah! Run the below command.

# HISTTIMEFORMAT="%d/%m/%y %T "
# history

If you want to permanently append this change, add the below line to ~/.bashrc.

export HISTTIMEFORMAT="%d/%m/%y %T "

and then, from terminal run,

# source ~/.bashrc

Explanation of commands and switches.

  • history GNU History Library
  • HISTIMEFORMAT Environmental Variable
  • %d Day
  • %m Month
  • %y Year
  • %T Time Stamp
  • source in short send the contents of file to shell
  • .bashrc is a shell script that BASH runs whenever it is started interactively.

history Command Logs history Command Logs

2. The next gem in the list is how to check disk write speed? Well one liner dd command script serves the purpose.

# dd if=/dev/zero of=/tmp/output.img bs=8k count=256k conv=fdatasync; rm -rf /tmp/output.img

dd Command Example dd Command Example

Explanation of commands and switches.

  • dd Convert and Copy a file
  • if=/dev/zero Read the file and not stdin
  • of=/tmp/output.img Write to file and not stdout
  • bs Read and Write maximum upto M bytes, at one time
  • count Copy N input block
  • conv Convert the file as per comma separated symbol list.
  • rm Removes files and folder
  • -rf (-r) removes directories and contents recursively and (-f) Force the removal without prompt.

3. How will you check the top six files that are eating out your space? A simple one liner script made from du command, which is primarily used as file space usages.

# du -hsx * | sort -rh | head -6

Check Disk Space Usage Check Disk Space Usage

Explanation of commands and switches.

  • du Estimate file space usages
  • -hsx (-h) Human Readable Format, (-s) Summaries Output, (-x) One File Format, skip directories on other file format.
  • sort Sort text file lines
  • -rf (-r) Reverse the result of comparison, (-f) Ignore case
  • head output first n lines of file.
# stat filename_ext  (viz., stat abc.pdf)

Check File Statistics Check File Statistics

5. The next and last but not the least, this one line script is for those, who are newbies. If you are an experienced user you probably dont need it, unless you want some fun out of it. Well newbies are Linux-command-line phobic and the below one liner will generate random man pages. The benefit is as a newbie you always get something to learn and never get bored.

# man $(ls /bin | shuf | head -1)

Generate Random Man Pages Generate Random Man Pages

Explanation of commands and switches.

  • man Linux Man pages
  • ls Linux Listing Commands
  • /bin System Binary file Location
  • shuf Generate Random Permutation
  • head Output first n line of file.

Thats all for now. If you know any such tips and tricks you may share with us and we will post the same in your words on our reputed Tecmint.com website.

If you want to share any tips and tricks that you cannot make into article you may share it at tecmint[dot]com[at]gmail[dot]com and we will include it in our article. Dont forget to provide us with your valuable feedback in the comments below. Keep connected. Like and share us and help us get spread.


via: http://www.tecmint.com/5-linux-command-line-tricks/

作者:Avishek Kumar 译者:译者ID 校对:校对者ID

本文由 LCTT 原创翻译,Linux中国 荣誉推出