docker image prune
If you only want to search in a specific repository, follow the Instruction-1 that David tweeted Winterbottom. For searching in whole repositories of organiation/user follow the Instruction-2
\bWORDA[\s\S]*?WORDB | |
\bWORDA[\s\S]*?WORDB(?=[\r\n]) |
mvn clean install -DskipITs=true -DskipTests=true |
# Replace with your windows username | |
win_user=<replace> | |
# Update the apt package list. | |
sudo apt-get update -y | |
# Install Docker's package dependencies. | |
sudo apt-get install -y \ | |
apt-transport-https \ | |
ca-certificates \ |
UBUNTU: | |
SSD: | |
sudo apt install nvme-cli | |
sudo nvme smart-log /dev/nvme0 | |
# check percentage_used % | |
Memory: | |
1-Turn On or Restart the system | |
2-Hold down Shift to bring up the GRUB menu. | |
3-Use the arrow keys to move to the entry labeled Ubuntu, memtest86+ |
private static final Date buildDate = getClassBuildTime(); | |
/** | |
* Handles files, jar entries, and deployed jar entries in a zip file (EAR). | |
* @return The date if it can be determined, or null if not. | |
*/ | |
private static Date getClassBuildTime() { | |
Date d = null; | |
Class<?> currentClass = new Object() {}.getClass().getEnclosingClass(); | |
URL resource = currentClass.getResource(currentClass.getSimpleName() + ".class"); |
; commands separated by a ; are executed sequentially. The shell waits for each command to terminate in turn. | |
&& command after && is executed if, and only if, command before && returns an exit status of zero. You can think of it as AND operator. | |
| a pipe. In expression command1 | command2 The standard output of command1 is connected via a pipe to the standard input of command2. | |
There are more similar control operators, worth to mention: |
sbt 'set test in Test := {}' clean assembly |