Skip to content

Latest commit

 

History

History
149 lines (106 loc) · 2.54 KB

README.md

File metadata and controls

149 lines (106 loc) · 2.54 KB

kbcm

kbcm is a commandline tool to copy and move files with integrated progress bar. kbcm is written in shell script

Note: kbcm is included in package supreme. if supreme is already installed, skip installing.

Usage: kbcm [Flags] [source/path] [Destination/path]
  -m  Move
  -c  Copy
  -v  version
Note: Use single flag.Using multiple flags simultaneously may give undesired result
Example:
  kbcm -c /home/linuxuser/Videos/a.mp4 /home/linuxuser/Desktop

Install

Debian package install
Download debian package amd64.deb/i386.deb from release tab to any debian based Linux
install
Apt Package Manager

For bionic

sudo add-apt-repository ppa:kiran.kb/kbcm
sudo apt-get update
sudo apt-get install kbcm

For other ubuntu versions,this PPA can be added to your system manually by copying the lines below and adding them to your system's software sources.

deb http://ppa.launchpad.net/kiran.kb/kbcm/ubuntu bionic main 
deb-src http://ppa.launchpad.net/kiran.kb/kbcm/ubuntu bionic main 

And then run the following

sudo apt-get update
sudo apt-get install kbcm

If it throws error, run the following

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E021E2DC3302D8CE
sudo apt-get update
sudo apt-get install kbcm
Git Install
  • First clone the repository:
git clone https://github.com/Kiran-Bose/kbcm
  • Then cd into the cloned directory:
cd kbcm
  • Run the guided install script with
. install.sh

Update

Apt Package Manager
sudo apt update
sudo apt upgrade
Git Update

If the package is installed running '. install' mentioned in Git install section, running it again will prompt for update if any.

  • cd into the cloned directory:
cd kbcm
  • Run the guided install script with
. install.sh

Uninstall

Apt Package Manager/Debian package uninstall
sudo apt remove kbcm
OR
sudo apt purge kbcm
Git Uninstall
  • If you don't have the supreme folder anymore clone the repository:
git clone https://github.com/Kiran-Bose/kbcm
  • cd into the supreme directory:
cd kbcm
  • run the below command
. uninstall.sh