Posted On February 5, 2021

Linux Bash Shell Command to Download and Install an App

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux Bash Shell Command to Download and Install an App
# Set file path variable
vagrantFile=https://releases.hashicorp.com/vagrant/2.2.14/vagrant_2.2.14_x86_64.deb

# Download and install a Debian based file
fileName="${vagrantFile##*/}"
curl -O $vagrantFile
sudo apt install ./$fileName

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Transfer Files Via SSH or WinRM

Secured Shell (SSH) is the prevalent standard for remote accessing of Linux systems. Even Microsoft…

Linux: A Quick Sequence of Starting and Stopping an App

Check to see if SeaHorse is broken kimconnect@nuc:# seahorseGtk-Message: 08:52:44.606: Failed to load module "canberra-gtk-module"Gtk-Message:…

Linux User and Group General Operations

# Add new useruseradd tomcruise# Create new groupgroupadd webadmins# Add user to groupusermod -a -G…