Specify the full disk path, and then optionally the new mounted directory name. If the mounted directory name is not specified, then it will have the same name as the disk specified in the path.
$ ./mdisk <path to disk> [name of mounted directory]
If no new directory name is specified, then the existing disk name will be used.
$ ./mdisk /dev/sda1 sandisk_ssd # mount disk at /dev/sda1 to /mnt/sandisk_ssd
Run cpacman just like pacman. It saves a list of user installed packages. Intended to be kept as a backup to make arch reinstallation easy.
$ ./cpacman [pacman stuff]
$ ./cpacman -S neovim
or
$ ./cpacman -Syu
After installation, a list of user installed packages will be saved to $HOME/.config/packages.
$ ./watchf "./*.go" debug_run
This command watching all .go
files in the current directory, and then executes debug_run
when any files are changed