Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						b1137da792 
					 
					
						
						
							
							Merge pull request  #24  from linus/patch-2  
						
						 
						
						... 
						
						
						
						Use correct quoting 
						
						
					 
					
						2022-05-08 01:04:52 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						b912cc99bf 
					 
					
						
						
							
							Merge pull request  #23  from linus/patch-1  
						
						 
						
						... 
						
						
						
						Use equivalent regex with PCRE 
						
						
					 
					
						2022-05-08 01:02:27 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						b07665cb43 
					 
					
						
						
							
							Merge pull request  #22  from herrcykel/patch-1  
						
						 
						
						... 
						
						
						
						Simplify glob expression 
						
						
					 
					
						2022-05-08 00:58:25 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						7010074d16 
					 
					
						
						
							
							Merge pull request  #35  from chapeupreto/fixes  
						
						 
						
						... 
						
						
						
						fix typo and markdown formatting issues 
						
						
					 
					
						2022-05-08 00:54:56 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Rod Elias 
							
						 
					 
					
						
						
							
						
						12023778bd 
					 
					
						
						
							
							fix typo and markdown formatting  
						
						 
						
						... 
						
						
						
						Signed-off-by: Rod Elias <rodiney@gmail.com > 
						
						
					 
					
						2022-05-06 10:50:27 -03:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jackson Bailey 
							
						 
					 
					
						
						
							
						
						dc268515b7 
					 
					
						
						
							
							Variable substitution changes  
						
						 
						
						... 
						
						
						
						Clarify documentation and give a few more examples 
						
						
					 
					
						2022-05-04 15:58:25 -04:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Emil Berg 
							
						 
					 
					
						
						
							
						
						d2549128c7 
					 
					
						
						
							
							Fix spelling errors  
						
						 
						
						... 
						
						
						
						Signed-off-by: Emil Berg <emil.berg@ericsson.com > 
						
						
					 
					
						2022-05-04 07:50:27 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Страхиња Радић 
							
						 
					 
					
						
						
							
						
						bd9a732dba 
					 
					
						
						
							
							Correct the description of Esc + c (Alt+c)  
						
						 
						
						... 
						
						
						
						Signed-off-by: Страхиња Радић <contact@strahinja.org > 
						
						
					 
					
						2022-05-04 07:47:31 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Nate Eagleson 
							
						 
					 
					
						
						
							
						
						c136e0f36f 
					 
					
						
						
							
							Fix typo in README.md (singer -> single)  
						
						 
						
						
						
						
					 
					
						2022-05-03 21:45:55 -04:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								O 
							
						 
					 
					
						
						
							
						
						8ab7cf7a6d 
					 
					
						
						
							
							Simplify glob expression  
						
						 
						
						... 
						
						
						
						Signed-off-by: O <herrcykel@users.noreply.github.com > 
						
						
					 
					
						2022-05-03 22:15:57 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Linus G Thiel 
							
						 
					 
					
						
						
							
						
						a97dcf2a3b 
					 
					
						
						
							
							Use equivalent regex with PCRE  
						
						 
						
						... 
						
						
						
						Use the equivalent regex with PCRE.
`[0-9]*` (and `\d*`) will output each integer, e.g.:
```bash
echo 17 | grep -o '[0-9]*'
```
Whereas `\d` will split it into digits, e.g.:
```bash
echo 17 | grep -oP '\d'
```
Signed-off-by: Linus G Thiel <linus@yesbabyyes.se > 
						
						
					 
					
						2022-05-03 22:02:09 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Linus G Thiel 
							
						 
					 
					
						
						
							
						
						0f5fa26f06 
					 
					
						
						
							
							Use correct quoting  
						
						 
						
						... 
						
						
						
						Unquote the sed expression.
Signed-off-by: Linus G Thiel <linus@yesbabyyes.se > 
						
						
					 
					
						2022-05-03 22:01:42 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						c2b96736bd 
					 
					
						
						
							
							Merge pull request  #21  from Strahinja/master  
						
						 
						
						... 
						
						
						
						Correct the description of Esc + c (Alt+c, M-c) 
						
						
					 
					
						2022-05-03 12:21:52 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Страхиња Радић 
							
						 
					 
					
						
						
							
						
						8dcfa4904b 
					 
					
						
						
							
							Correct the description of Esc + c (Alt+c)  
						
						 
						
						... 
						
						
						
						Signed-off-by: Страхиња Радић <contact@strahinja.org > 
						
						
					 
					
						2022-01-26 18:17:03 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						ce13d4af19 
					 
					
						
						
							
							Merge pull request  #20  from valerionew/patch-1  
						
						 
						
						... 
						
						
						
						Swap * and ? in bash globbing sections to match with correct comments 
						
						
					 
					
						2021-08-13 19:03:16 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								valerio\new 
							
						 
					 
					
						
						
							
						
						81ec32bfb9 
					 
					
						
						
							
							Swap * and ? in bash globbing sections to match with correct comments  
						
						 
						
						... 
						
						
						
						Signed-off-by: valerionew <valerionappi995@gmail.com > 
						
						
					 
					
						2021-07-01 15:05:55 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						954f42c06a 
					 
					
						
						
							
							fixed typo in file name  
						
						 
						
						... 
						
						
						
						xargs using With sed 
						
						
					 
					
						2021-05-16 16:17:31 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						c1c3f8bcb5 
					 
					
						
						
							
							Merge pull request  #19  from WardMaes/master  
						
						 
						
						... 
						
						
						
						Add instructions to exit virtual environment 
						
						
					 
					
						2021-05-06 17:30:17 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ward 
							
						 
					 
					
						
						
							
						
						26db64f1b2 
					 
					
						
						
							
							Add deactivate command  
						
						 
						
						... 
						
						
						
						Signed-off-by: Ward <WardMaes@users.noreply.github.com > 
						
						
					 
					
						2021-04-11 11:40:52 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						5e32496e5d 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/onceupon/Bash-Oneliner  
						
						 
						
						
						
						
					 
					
						2021-03-16 22:10:53 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						f1e9f30e78 
					 
					
						
						
							
							+ find 1. Recursively count all the files in a directory  
						
						 
						
						... 
						
						
						
						+ Condition and loop
1.  Using test command, to test if the length of variable is nonzero
+ Others
1. Create a screen and name it 'test'
+ Time
1. Get the seconds since epoch (Jan 1 1970) for a given date (e.g Mar 16 
2021)
2. Convert the number of seconds since epoch back to date
+ fix some markdown syntax issue 
						
						
					 
					
						2021-03-16 22:10:49 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						248ae4c50e 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/onceupon/Bash-Oneliner  
						
						 
						
						
						
						
					 
					
						2021-03-16 22:08:23 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						5740e44d62 
					 
					
						
						
							
							+ find 1. Recursively count all the files in a directory  
						
						 
						
						... 
						
						
						
						+ Condition and loop
1.  Using test command, to test if the length of variable is nonzero
+ Others
1. Create a screen and name it 'test'
+ Time
1. Get the seconds since epoch (Jan 1 1970) for a given date (e.g Mar 16 
2021)
2. Convert the number of seconds since epoch back to date
+ fix some markdown syntax issue 
						
						
					 
					
						2021-03-16 22:08:02 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						19d402cc84 
					 
					
						
						
							
							+ find  
						
						 
						
						... 
						
						
						
						1. Recursively count all the files in a directory
+ Condition and loop
1.  Using test command, to test if the length of variable is nonzero
+ Others
1. Create a screen and name it 'test'
+ Time
1. Get the seconds since epoch (Jan 1 1970) for a given date (e.g Mar 16 
2021)
2. Convert the number of seconds since epoch back to date
+ fix some markdown syntax issue 
						
						
					 
					
						2021-03-16 22:03:57 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						244a568bd7 
					 
					
						
						
							
							fix typo mentioned in issue  https://github.com/onceupon/Bash-Oneliner/issues/18  
						
						 
						
						
						
						
					 
					
						2021-03-16 20:13:56 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								onceupon 
							
						 
					 
					
						
						
							
						
						093edef55a 
					 
					
						
						
							
							+ time  
						
						 
						
						... 
						
						
						
						returns the current time with nanoseconds. 
						
						
					 
					
						2021-03-16 19:43:41 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bonnie I-Man Ng 
							
						 
					 
					
						
						
							
						
						8b505a4dc5 
					 
					
						
						
							
							Merge pull request  #16  from fazlearefin/master  
						
						 
						
						... 
						
						
						
						Use curl for http status code and reveal a shortened url 
						
						
					 
					
						2020-09-08 13:28:35 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fazle Arefin 
							
						 
					 
					
						
						
							
						
						1e10f6f269 
					 
					
						
						
							
							Use curl to unshorten a shortened URL  
						
						 
						
						
						
						
					 
					
						2020-08-29 21:22:59 +10:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fazle Arefin 
							
						 
					 
					
						
						
							
						
						4b2167dca3 
					 
					
						
						
							
							Use curl to find out the http status code of a URL  
						
						 
						
						
						
						
					 
					
						2020-08-29 21:21:09 +10:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						b396c45634 
					 
					
						
						
							
							fix markdown  
						
						 
						
						
						
						
					 
					
						2020-07-19 23:42:01 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						f7850ce5c4 
					 
					
						
						
							
							fix styling  
						
						 
						
						
						
						
					 
					
						2020-07-19 23:39:57 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						5e8aa86062 
					 
					
						
						
							
							fix styling  
						
						 
						
						
						
						
					 
					
						2020-07-19 23:39:00 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						8cdf69d5c5 
					 
					
						
						
							
							fix header  
						
						 
						
						
						
						
					 
					
						2020-07-19 23:36:11 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						e1a3a2a25d 
					 
					
						
						
							
							update  
						
						 
						
						... 
						
						
						
						- Get UUID of a disk (e.g. sdb) 
						
						
					 
					
						2020-07-19 23:28:25 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						708ed78958 
					 
					
						
						
							
							Networking  
						
						 
						
						... 
						
						
						
						- To block port 80 (HTTP server) using iptables. 
						
						
					 
					
						2020-07-19 23:18:25 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						c434421b77 
					 
					
						
						
							
							System  
						
						 
						
						... 
						
						
						
						-  Check status of a process using PID 
						
						
					 
					
						2020-07-19 23:13:06 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						d6a31731d7 
					 
					
						
						
							
							System  
						
						 
						
						... 
						
						
						
						- Set the default user and key for a host when using SSH 
						
						
					 
					
						2020-07-19 23:06:03 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						27da2e897b 
					 
					
						
						
							
							update  
						
						 
						
						... 
						
						
						
						- Edit PS1 variable for bash 
						
						
					 
					
						2020-07-19 22:58:30 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						ad6e6112f1 
					 
					
						
						
							
							Find  
						
						 
						
						... 
						
						
						
						- Find large files in the system (e.g. >4G) 
						
						
					 
					
						2020-07-19 22:55:29 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						ddd2d3aa1f 
					 
					
						
						
							
							Others  
						
						 
						
						... 
						
						
						
						- List one file per line. 
						
						
					 
					
						2020-07-19 22:52:32 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						f6be60886d 
					 
					
						
						
							
							Condition and loop  
						
						 
						
						... 
						
						
						
						- Make directories listed in a file 
						
						
					 
					
						2020-07-19 22:45:24 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						cbe90cb99f 
					 
					
						
						
							
							System  
						
						 
						
						... 
						
						
						
						- Check for package update 
						
						
					 
					
						2020-07-19 22:40:49 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						7aba786152 
					 
					
						
						
							
							Networking  
						
						 
						
						... 
						
						
						
						- Scan for open ports and OS and version detection 
						
						
					 
					
						2020-07-19 22:38:34 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						7e9a091b3f 
					 
					
						
						
							
							Networking  
						
						 
						
						... 
						
						
						
						- Nc as a chat tool! 
						
						
					 
					
						2020-07-19 22:32:08 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						39fbcae0b7 
					 
					
						
						
							
							Others  
						
						 
						
						... 
						
						
						
						- Zip the content of a directory without including the directory itself 
						
						
					 
					
						2020-07-19 22:28:38 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						fe139c35d1 
					 
					
						
						
							
							System  
						
						 
						
						... 
						
						
						
						- Run yum update excluding a package 
						
						
					 
					
						2020-07-19 22:18:48 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						e17743e9b9 
					 
					
						
						
							
							edit  
						
						 
						
						... 
						
						
						
						- Which ports are listening for TCP connections from the network 
						
						
					 
					
						2020-07-19 22:16:45 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						3d6f8bcda1 
					 
					
						
						
							
							Time  
						
						 
						
						... 
						
						
						
						- Print date with formatting 
						
						
					 
					
						2020-07-19 22:14:19 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						8e6a0f8eb9 
					 
					
						
						
							
							Networking  
						
						 
						
						... 
						
						
						
						- Perform network throughput tests 
						
						
					 
					
						2020-07-19 22:12:40 +08:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								bonnie 
							
						 
					 
					
						
						
							
						
						8ed1acc61b 
					 
					
						
						
							
							System  
						
						 
						
						... 
						
						
						
						- Work with yum history 
						
						
					 
					
						2020-07-19 21:40:03 +08:00