BASH

How to Get Current Date …

1# get more details by running "date --help" command 2date '+%d-%m-%Y %X' OUTPUT: …

How to Check If a File …

With using command line; 1test -f /etc/os-release && echo "file exist" 2 3[ -f …