Horje
mktemp with date Code Example
bash create temporary folder
#!/bin/bashtmp_dir=$(mktemp -d -t ci-XXXXXXXXXX)echo $tmp_dir # ... rm -rf $tmp_dir 
mktemp with date
#!/bin/bashtmp_dir=$(mktemp -d -t ci-$(date +%Y-%m-%d-%H-%M-%S)-XXXXXXXXXX) echo $tmp_dir rm -rf $tmp_dir




Whatever

Related
division in relational algebra Code Example division in relational algebra Code Example
Flutter: How do I bold (or format) a piece of text within a paragraph? Code Example Flutter: How do I bold (or format) a piece of text within a paragraph? Code Example
sort in mongoose aggregate lookup Code Example sort in mongoose aggregate lookup Code Example
combine .proto in android studio project Code Example combine .proto in android studio project Code Example
Drupal 8 reset update hook drush Code Example Drupal 8 reset update hook drush Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6