Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 983 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 983 Bytes

About

A human readable way to hide or make visible files or directories using terminal.

Demo

example

Installation (via terminal)

  • git clone https://github.com/1RaY-1/hide-unhide4linux.git
  • cd hide-unhide4linux/
  • bash install.sh

Uninstallation

To uninstall (delete binaries from system), type this command inside hide-unhide4linux directory: sudo bash uninstall.sh

Usage

Hide file

hide ANY_FILE_OR_DIRECTORY

Make visible

unhide ANY_FILE_OR_DIRECTORY

How it works

It's simple, 'hide.sh' just adds a dot at the beginning of a file or directory to hide it.

And 'unhide.sh' removes the dot at the beginning of a file or directory to make it visible.

So instead of typing something like: mv MY_FILE .MY_FILE

You just need to type: hide MY_FILE

And instead of typing: mv .MY_FILE MY_FILE

You just need to type: unhide .MY_FILE