How to run .sh files in Linux system

How to run .sh files in Linux system

There are two ways to run .sh files in Linux system. For example, I have a datelog.sh file in the root directory.

The first method (this method requires chmod to make the file executable (x): chmod u+x datelog.sh):

1. In any path, enter the absolute path of the file /root/datelog.sh to execute the file (of course, if the permission is allowed)


2. cd to the directory of the datelog.sh file, and then execute ./datelog.sh


The second method (this method does not require the file to have executable permissions to run):

1. Add the file name to the file path, sh datelog.sh


2. In any path, add the file path and file name to sh: sh /root/ datelog.sh


Double-click the sh file in the desktop environment to run:

Mac:

1. Change the suffix sh to command: hello.sh->hello.command

2. Modify the executable permission: chmod u+x hello.command

Ubuntu:

1. Modify the executable permission: chmod u+x hello.sh

2. Open any folder and select [Edit] -> [Preferences] in the upper left corner.

Select [Run executable text files when opening them] to double-click to run.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Getting started with writing and running Linux shell (.sh) scripts

<<:  A simple way to implement all functions of shopping cart in Vue

>>:  What you need to understand about MySQL locks

Recommend

Vue component library ElementUI implements table loading tree data tutorial

ElementUI implements a table tree list loading tu...

Example code for implementing complex table headers in html table

Use HTML to create complex tables. Complex tables...

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

HTML+CSS to achieve drop-down menu

1. Drop-down list example The code is as follows:...

How to completely uninstall node and npm on mac

npm uninstall sudo npm uninstall npm -g If you en...

MySQL index pushdown details

Table of contents 1. Leftmost prefix principle 2....

Analysis of Context application scenarios in React

Context definition and purpose Context provides a...

Using MySQL database in docker to achieve LAN access

1. Get the mysql image docker pull mysql:5.6 Note...

Windows10 mysql 8.0.12 non-installation version configuration startup method

This article shares the specific steps for config...

Implementation script for scheduled database backup in Linux

Table of contents Scenario: The server database n...

Detailed explanation of the difference between alt and title

These two attributes are often used, but their di...

Detailed explanation of webpack-dev-server core concepts and cases

webpack-dev-server core concepts Webpack's Co...

Why not use UTF-8 encoding in MySQL?

MySQL UTF-8 encoding MySQL has supported UTF-8 si...