Detailed explanation of daily_routine example code in Linux

Detailed explanation of daily_routine example code in Linux

First look at the example code:

#/bin/bash


cal

date -u

echo "Hello, welcome ${LOGNAME}! A full day has begun!"


read -p "input your password!" pwd

if test $pwd == "123"
then
    echo "Your login sucessfully!"
    for file in /tmp/*
    do
        echo $file
    done
else
    echo "Deny logon"
fi

cal print calendar

date -u displays or sets the global time (Greenwich Mean Time)

${LOGNAME} Current logged in user

The above examples are very simple, you can try to test them. Thank you for your learning and support for 123WORDPRESS.COM.

<<:  MySQL 5.7.21 decompressed version of the tutorial to restore data through the historical data directory

>>:  Detailed explanation of using Docker to build externally accessible MySQL

Recommend

mysql calculation function details

Table of contents 2. Field concatenation 2. Give ...

Detailed example of using typescript to encapsulate axios in Vue3

This axios package is used in the vue3 demo. For ...

Detailed explanation of the benefits of PNG in various network image formats

BMP is an image file format that is independent o...

Example of MySQL auto-increment ID exhaustion

Display Definition ID When the auto-increment ID ...

Summarize the common application problems of XHTML code

<br />For some time, I found that many peopl...

Detailed explanation of MySql data type tutorial examples

Table of contents 1. Brief Overview 2. Detailed e...

How to implement digital paging effect code and steps in CSS

A considerable number of websites use digital pagi...

CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

1. Uninstalling MySQL 5.7 1.1查看yum是否安裝過mysql cd y...

Tutorial on deploying nginx+uwsgi in Django project under Centos8

1. Virtual environment virtualenv installation 1....

How to get the dynamic number of remaining words in textarea

I encountered a case at work that I had never wri...

CSS Tutorial: CSS Attribute Media Type

One of the most important features of a style she...

impress.js presentation layer framework (demonstration tool) - first experience

I haven’t blogged for half a year, which I feel a ...

Methods and steps for deploying go projects based on Docker images

Dependence on knowledge Go cross-compilation basi...