./ls -a: List all contents, including hidden files./ls -H: List contents with sizes in a human-readable format
./snip add "Example Title" "Example Content": Add a new snippet with a title and content../snip list: List all stored snippets:./snip search "keyword": Search for snippets containing a keyword `
./fsearch /path/to/search "pattern": Search for files by pattern within a specified path
./cat /path/to/file: Display the content of a specified file
-
./ln /path/to/target /path/to/linkname: Create a hard link to a target file -
./ln -s /path/to/target /path/to/symlink: Create a symbolic link to a target file
./grep "pattern" /path/to/file: Search for a pattern within a specified file
mathematica
./wc /path/to/file: Count lines, words, characters, and bytes in a file
./cat example.txt | ./grep 'some-pattern': This command concatenates and displays the content ofexample.txt, piping it throughgrepto filter and display lines that match 'some-pattern'.