Horje
linux run multipel comands in one line Code Example
linux run multipel comands in one line
# cmd1 && cmd2
$ cd myfolder && ls  # run ls only after cd to myfolder
$ cd myfolder; ls   # no matter cd to myfolder successfully, run ls
$ cd myfolder || ls  # if failed cd to myfolder, `ls` will run
Source: dev.to




Shell

Related
install gitlab-ce on centos Code Example install gitlab-ce on centos Code Example
Add Gitbash branch name to powershell Code Example Add Gitbash branch name to powershell Code Example
Edit remote files in new tab of Vim session Code Example Edit remote files in new tab of Vim session Code Example
Run multiple commands over SSH as sudo Code Example Run multiple commands over SSH as sudo Code Example
vscode fedora Code Example vscode fedora Code Example

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