RAG (Retrieval-Augmented Generation) – Simple Explanation & Practical Use Cases
March 4, 2025Download Lengthy-Videos From Youtube. Working as at 09/03/2025
March 9, 2025Just a simple command on your mac terminal to hide/unhide files.
We can make use of the "mv" command which is meant to move/rename files.
So let's say we intend to hide "hiddenfile.jpg". Please note the "." in the last filepath name
mv /path_to_yourfile/hiddenfile.jpg /path_to_yourfile/.hiddenfile.jpg
To reverse this, we can run the code in the reversed manner
mv /path_to_yourfile/.hiddenfile.jpg /path_to_yourfile/hiddenfile.jpg
The above will reveal the file name. This works for files only, not folders.
