User Tools

Site Tools


pages:howtos:bash:bash-command-line-tricks

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
pages:howtos:bash:bash-command-line-tricks [2021/02/10 23:48] mischerhpages:howtos:bash:bash-command-line-tricks [2022/11/25 15:09] (current) – [exit terminal but leave all processes running] mischerh
Line 128: Line 128:
  
 ===== Sort Processes by Memory or CPU Usage ===== ===== Sort Processes by Memory or CPU Usage =====
 +To sort by memory usage:
  
 +<sxh bash; gutter: false>
 +ps aux | sort -nk 4
 +</sxh>
  
-### To sort by memory usage: +To sort by CPU usage: 
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\04-sort-by-memory-usage.png+<sxh bash; gutter: false> 
 +ps aux | sort -nk 3 
 +</sxh>
  
-### To sort by CPU usage: 
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\05-sort-by-cpu-usage.png 
  
- +===== Check Your Architecture ===== 
-Check Your Architecture +<sxh bash; gutter: false>
------------------------+
 getconf LONG_BIT getconf LONG_BIT
 +</sxh>
  
- +===== Monitor Multiple Log Files Concurrently =====
-Monitor Multiple Log Files Concurrently +
----------------------------------------+
 You can use the tail command to watch your logs and that’s fine, but sometimes you may need to monitor multiple log files simultaneously to take some actions. You can use the tail command to watch your logs and that’s fine, but sometimes you may need to monitor multiple log files simultaneously to take some actions.
  
-Using multitail command which supports text highlighting, filtering, and many other features that you may need. +Using **multitail** command which supports text highlighting, filtering, and many other features that you may need.
- +
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\06-multitail.png +
- +
-You can install it if it is not found on your system like this: +
- +
-apt-get install multitail +
  
  
-Return to Your Previous Directory +===== Return to Your Previous Directory =====
----------------------------------+
 It’s not a trick but some people forget it, others use it every minute. It’s not a trick but some people forget it, others use it every minute.
  
-Just type cd –  and you will return back to the previous directory.+Just type //cd –//  and you will return back to the previous directory. 
 +<sxh bash; gutter: false> 
 +cd – 
 +</sxh>
  
 +===== Make non-interactive as interactive shell session =====
 +To do this, put our settings in ~/.bashrc  from ~/.bash_profile.
  
-Watch Command Output +===== Watch Command Output =====
---------------------+
 By using watch command, you can watch any output of any command, for example, you can watch the free space and how it is growing: By using watch command, you can watch any output of any command, for example, you can watch the free space and how it is growing:
 +<sxh bash; gutter: false>
 watch df –h watch df –h
 +</sxh>
  
 You can imagine what you can do with any variant data that you can watch using watch command. You can imagine what you can do with any variant data that you can watch using watch command.
  
- +===== Run Your Program After Session Killing =====
-Run Your Program After Session Killing +
---------------------------------------+
 When you run any program in the background and close your shell, definitely it will be killed, what about if it continues running after closing the shell. When you run any program in the background and close your shell, definitely it will be killed, what about if it continues running after closing the shell.
  
-This can be done using the nohup command which stands for no hang up. +This can be done using the nohup command which stands for //no hang up//
 +<sxh bash; gutter: false>
 nohup wget site.com/file.zip nohup wget site.com/file.zip
 +</sxh>
  
 This command is really one of the most useful Linux command line tricks for most webmasters. This command is really one of the most useful Linux command line tricks for most webmasters.
  
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\07-nohup-command.png+A file will be generated in the same directory with the name //nohup.out// contains the output of the running program.
  
-A file will be generated in the same directory with the name nohup.out contains the output of the running program. 
  
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\08-nohup-output.png+===== Answer bot Using Yes & No Commands =====
  
-Cool command right? 
- 
- 
-Answer bot Using Yes & No Commands 
----------------------------------- 
 It’s like an answer bot for those commands whose require the user to say yes. It’s like an answer bot for those commands whose require the user to say yes.
  
 That can be done using the yes command: That can be done using the yes command:
 +<sxh bash; gutter: false>
 yes | apt-get update yes | apt-get update
 +</sxh>
  
 Or maybe you want to automate saying no instead, this can be done using the following command: Or maybe you want to automate saying no instead, this can be done using the following command:
 +<sxh bash; gutter: false>
 yes no | command yes no | command
 +</sxh>
  
- +===== Create a File With a Specific Size ===== 
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\09-yes-command.png +Use the **dd** command to create a file with a specific size: 
- +<sxh bash; gutter: false>
- +
-Create a File With a Specific Size +
----------------------------------- +
-Use the dd command to create a file with a specific size: +
 dd if=/dev/zero of=out.txt bs=1M count=10 dd if=/dev/zero of=out.txt bs=1M count=10
 +</sxh>
  
 This will create a file with 10-megabyte size filled with zeros. This will create a file with 10-megabyte size filled with zeros.
 +<sxh bash; gutter: false>
 dd if=/dev/zero of=out.txt bs=1M count=10 dd if=/dev/zero of=out.txt bs=1M count=10
 +</sxh>
  
- +===== Run Last Command as Root =====
- +
-Run Last Command as Root +
-------------------------+
 Sometimes you forget to type sudo before your command that requires root privileges to run, you don’t have to rewrite it, just type: Sometimes you forget to type sudo before your command that requires root privileges to run, you don’t have to rewrite it, just type:
 +<sxh bash; gutter: false>
 sudo !! sudo !!
 +</sxh>
  
- +===== Record your Command Line Session ===== 
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\11-sudo.png +If you want to record what you’ve typed in your shell screen, you can use the **script** command which will save all of your typings to a file named typescript. 
- +<sxh bash; gutter: false>
- +
-Record your Command Line Session +
--------------------------------- +
-If you want to record what you’ve typed in your shell screen, you can use the script command which will save all of your typings to a file named typescript. +
 script script
 +</sxh>
  
 Once you type exit, all of your commands will be written to that file so you can review them later. Once you type exit, all of your commands will be written to that file so you can review them later.
  
  
-Replacing Spaces with Tabs +===== Replacing Spaces with Tabs ===== 
--------------------------- +You can replace any character with any other character using **tr** command which is very handy. 
-You can replace any character with any other character using tr command which is very handy. +<sxh bash; gutter: false>
 cat geeks.txt | tr ':[space]:' '\t' > out.txt cat geeks.txt | tr ':[space]:' '\t' > out.txt
 +</sxh>
  
 This command will replace the spaces with tabs. This command will replace the spaces with tabs.
  
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\12-tr-command.png+===== Convert Character Case ===== 
 +<sxh bash; gutter: false> 
 +cat my_file | tr a-z A-Z > output.txt 
 +</sxh>
  
 +This command converts the content of the file to upper case using the tr command.
  
-Convert Character Case +===== Powerful xargs Command ===== 
-----------------------+We can say that **xargs** command is one of the most important Linux command line tricks, you can use this command to pass outputs between commands as arguments, for example, you may search for png files and compress them or do anything with them. 
 +<sxh bash; gutter: false> 
 +find . -name "*.png" -type f -print | xargs tar -cvzf pics.tar.gz 
 +</sxh>
  
-cat my_file | tr a-z A-Z output.txt+Or maybe you have list of URLs in a file and you want to download them or process them in a different way: 
 +<sxh bash; gutter: false> 
 +cat links.txt | xargs wget 
 +</sxh>
  
 +The **cat** command result is passed to the end of **xargs** command.
  
-This command converts the content of the file to upper case using the tr command.+What if your command needs the output in the middle?
  
 +Just use //{}// combined with //–i// parameter to replace the arguments in the place where the result should go like this:
 +<sxh bash; gutter: false>
 +ls /etc/*.conf | xargs -i cp {} ~/tmp/out/
 +</sxh>
  
-Powerful xargs Command +===== Redo last command as root===== 
----------------------- +<sxh bash; gutter: false> 
-We can say that xargs command is one of the most important Linux command line tricks, you can use this command to pass outputs between commands as arguments, for example, you may search for png files and compress them or do anything with them.+#as user 
 +vim /etc/fstab 
 +sudo !! 
 +</sxh>
  
-find . -name "*.png" -type f -print | xargs tar -cvzf pics.tar.gz+===== Keyboard Shortcuts ===== 
 +  https://en.wikipedia.org/wiki/GNU_Readline
  
 +Emacs editing mode key bindings are taken from the text editor Emacs.
  
-Or maybe you have a list of URLs in a file and you want to download them or process them in a different way:+On some systems, Esc must be used instead of Alt, because the Alt shortcut conflicts with another shortcut. For example, pressing Alt+f in Xfce's terminal emulator window does not move the cursor forward one word, but activates "File" in the menu of the terminal window, unless that is disabled in the emulator's settings.
  
-cat links.txt | xargs wget+  * <key>Tab ↹</key> : Autocompletes from the cursor position. 
 +  * <key>Ctrl+a</key> : Moves the cursor to the line start (equivalent to the key Home). 
 +  * <key>Ctrl+b</key> : Moves the cursor back one character (equivalent to the key ←). 
 +  * <key>Ctrl+c</key> : Sends the signal SIGINT via pseudoterminal to the current task, which aborts and closes it.[d] 
 +  * <key>Ctrl+d</key> 
 +    * Sends an EOF marker, which (unless disabled by an option) closes the current shell (equivalent to the command exit). (Only if there is no text on the current line) 
 +    * If there is text on the current line, deletes the current character (then equivalent to the key Delete). 
 +  * <key>Ctrl+e</key> : (end) moves the cursor to the line end (equivalent to the key End). 
 +  * <key>Ctrl+f</key> : Moves the cursor forward one character (equivalent to the key →). 
 +  * <key>Ctrl+g</key> : Abort the reverse search and restore the original line. 
 +  * <key>Ctrl+h</key> : Deletes the previous character (same as backspace). 
 +  * <key>Ctrl+i</key> : Equivalent to the tab key. 
 +  * <key>Ctrl+j</key> : Equivalent to the enter key. 
 +  * <key>Ctrl+k</key> : Clears the line content after the cursor and copies it into the clipboard. 
 +  * <key>Ctrl+l</key> : Clears the screen content (equivalent to the command clear). 
 +  * <key>Ctrl+n</key> : (next) recalls the next command (equivalent to the key ↓). 
 +  * <key>Ctrl+o</key> : Executes the found command from history, and fetch the next line relative to the current line from the history for editing. 
 +  * <key>Ctrl+p</key> : (previous) recalls the prior command (equivalent to the key ↑). 
 +  * <key>Ctrl+r</key> : (reverse search) recalls the last command including the specified characters. A second Ctrl+r recalls the next anterior command that corresponds to the search 
 +  * <key>Ctrl+s</key> : Go back to the next more recent command of the reverse search (beware to not execute it from a terminal because this command also launches its XOFF). If you changed that XOFF setting, use Ctrl+q to return. 
 +  * <key>Ctrl+t</key> : Transpose the previous two characters. 
 +  * <key>Ctrl+u</key> : Clears the line content before the cursor and copies it into the clipboard. 
 +  * <key>Ctrl+v</key> : If the next input is also a control sequence, type it literally (e. g. * Ctrl+v Ctrl+h types "^H", a literal backspace.) 
 +  * <key>Ctrl+w</key> : Clears the word before the cursor and copies it into the clipboard. 
 +  * <key>Ctrl+x</key> <key>Ctrl+e</key> : Edits the current line in the $EDITOR program, or vi if undefined. 
 +  * <key>Ctrl+x</key> <key>Ctrl+r</key> : Read in the contents of the inputrc file, and incorporate any bindings or variable assignments found there. 
 +  * <key>Ctrl+x</key> <key>Ctrl+u</key> : Incremental undo, separately remembered for each line. 
 +  * <key>Ctrl+x</key> <key>Ctrl+v</key> : Display version information about the current instance of Bash. 
 +  * <key>Ctrl+x</key> <key>Ctrl+x</key> : Alternates the cursor with its old position. (C-x, because x has a crossing shape). 
 +  * <key>Ctrl+y</key> : (yank) adds the clipboard content from the cursor position. 
 +  * <key>Ctrl+z</key> : Sends the signal SIGTSTP to the current task, which suspends it. To execute it in background one can enter bg. To bring it back from background or suspension fg ['process name or job id'] (foreground) can be issued. 
 +  * <key>Ctrl+_</key> : Incremental undo, separately remembered for each line. 
 +  * <key>Alt+b</key> : (backward) moves the cursor backward one word. 
 +  * <key>Alt+c</key> : Capitalizes the character under the cursor and moves to the end of the word. 
 +  * <key>Alt+d</key> : Cuts the word after the cursor. 
 +  * <key>Alt+f</key> : (forward) moves the cursor forward one word. 
 +  * <key>Alt+l</key> : Lowers the case of every character from the cursor's position to the end of the current word. 
 +  * <key>Alt+r</key> : Cancels the changes and puts back the line as it was in the history. 
 +  * <key>Alt+u</key> : Capitalizes every character from the cursor's position to the end of the current word. 
 +  * <key>Alt+.</key> : Insert the last argument to the previous command (the last word of the previous history entry).
  
  
-The cat command result is passed to the end of xargs command.+===== RAMdisk ===== 
 +<sxh bash; gutter: false> 
 +mkdir -pv /mnt/ram 
 +mount -t tmpfs tmpfs /mnt/ram -o size=8192M 
 +</sxh>
  
-What if your command needs the output in the middle?+===== Prevent command from appearing in history ===== 
 +just type a leading <key>space</key> 
 +<sxh bash; gutter: false> 
 + echo "SUPERSAFEPASSWORD" > ~/mypassword.txt 
 +^- this is SPACE 
 +</sxh> 
 + 
 +===== Edit/change last typed command ===== 
 +<sxh bash; gutter: false> 
 +cat /home/user/.bashrc 
 +fc 
 + 
 +# or 
 +^bash^vim 
 +</sxh> 
 + 
 +===== SSH Tunnel ===== 
 +**-N**: Do not execute a remote command.  This is useful for just forwarding ports.  Refer to the description of SessionType in ssh_config(5) for details. 
 +<sxh bash; gutter: false> 
 +ssl -L <localport>:<remoteip>:<remoteport> user@hostname -N
  
-Just use {} combined with –i parameter to replace the arguments in the place where the result should go like this:+# e.g. local port 8080 to remote localhost:80 
 +ssl -L 8080:172.0.0.1:80 user@hostname.tld -N 
 +</sxh>
  
-ls /etc/*.conf | xargs -i cp {} /home/likegeeks/Desktop/out/+===== Create multiple folders ===== 
 +<sxh bash; gutter: false> 
 +mkdir -pv /home/user/folder{1,2,3}/{a..z} 
 +</sxh>
  
 +===== tee - Intercept STDOUT and log to file=====
 +<sxh bash; gutter: false>
 +cat ~/.bashrc | tee -a ~/LOGWHATSHAPPENING.log | cat > /dev/null
 +</sxh>
  
-~\ownCloud\zim\Bilder\DEF\bash-command-line-tricks\13-xargs-command.png+===== exit terminal but leave all processes running ===== 
 +<sxh bash; gutter: false> 
 +disown -a && exit 
 +</sxh>
  
 +===== Simultaneously copy a file, change permissions/owner/group and create the required directories =====
 +<sxh bash; gutter: false>
 +install -v -C --mode 0775 --owner <USER> --group <GROUP> /sourcedir/file /targetdir
 +</sxh>
  
 +----
 +~~DISCUSSION~~
pages/howtos/bash/bash-command-line-tricks.1613000909.txt.gz · Last modified: 2021/02/10 23:48 by mischerh