├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── --------------.md │ └── ----------.md └── workflows │ ├── build-and-deploy-on-push.yaml │ └── label-check-and-build.yaml ├── .gitmodules ├── .hugo_build.lock ├── LICENSE ├── README.md ├── __pycache__ ├── configs.cpython-310.pyc └── configs.cpython-38.pyc ├── archetypes └── default.md ├── config.yaml ├── configs.py ├── content ├── _index.md ├── about.md ├── fundamentals │ ├── environment variables │ │ └── environment variables.md │ ├── loop-device │ │ └── loop-device.md │ ├── permissions │ │ └── permissions.md │ ├── pipe │ │ └── pipe.md │ ├── shebang │ │ └── shebang.md │ └── swap │ │ └── swap.md ├── nav │ └── contribute │ │ └── how-to-contribute.md └── tools │ ├── Git │ └── Git.md │ ├── awk │ └── awk.md.draft │ ├── btop │ ├── btop.md │ └── btop │ │ ├── Display mode 1.png │ │ ├── Display mode 2.png │ │ ├── Display mode 3.png │ │ ├── Display mode 4.png │ │ ├── Killprocess.png │ │ ├── Monitoring.png │ │ ├── Search for process.png │ │ └── process status.png │ ├── cat │ └── cat.md │ ├── cd │ ├── cd.md │ └── cd │ │ ├── cd.jpg │ │ ├── cd_ex1.jpg │ │ └── cd_ex2.jpg │ ├── comm │ └── comm.md.draft │ ├── cp │ ├── cp.md │ └── cp │ │ └── cp.jpg │ ├── cron │ ├── cron.md │ └── cron │ │ ├── cover.jpg │ │ └── field.png │ ├── curl │ └── curl.md.draft │ ├── cut │ └── cut.md │ ├── date │ └── date.md │ ├── dd │ ├── dd.md │ └── dd │ │ └── dd.jpg │ ├── df │ └── df.md │ ├── exit │ └── exit.md.draft │ ├── fdisk │ └── fdisk.md │ ├── file │ └── file.md │ ├── find │ └── find.md │ ├── fmt │ └── fmt.md │ ├── free │ └── free.md │ ├── grep │ └── grep.md │ ├── groupadd │ └── groupadd.md │ ├── gzip │ └── gzip.md │ ├── head │ └── head.md │ ├── history │ └── history.md │ ├── htop │ ├── htop.md │ └── htop │ │ ├── htop.png │ │ ├── kill.png │ │ ├── saveoutput.png │ │ └── treeView.png │ ├── less │ └── less.md │ ├── locate │ └── locate.md │ ├── ls │ └── ls.md │ ├── lsusb │ └── lsusb.md │ ├── mkdir │ └── mkdir.md │ ├── mkfs │ └── mkfs.md │ ├── mount │ └── mount.md │ ├── mv │ └── mv.md │ ├── nano │ ├── nano.md │ └── nano │ │ ├── View.png │ │ └── save1.png │ ├── nc │ ├── nc.md │ └── nc │ │ └── nc.png │ ├── neofetch │ ├── neofetch.md │ └── neofetch │ │ ├── Neofetch.png │ │ └── cat neofetch.png │ ├── nl │ └── nl.md │ ├── passwd │ └── passwd.md │ ├── paste │ └── paste.md │ ├── ping │ └── ping.md │ ├── pwd │ └── pwd.md │ ├── rar │ └── rar.md │ ├── reboot │ └── reboot.md │ ├── redshift │ └── redshift.md │ ├── rm │ └── rm.md │ ├── scp │ └── scp.md │ ├── shutdown │ └── shutdown.md │ ├── sort │ └── sort.md │ ├── tail │ └── tail.md │ ├── tar │ └── tar.md.draft │ ├── terminator │ ├── terminator.md │ └── terminator │ │ ├── example.png │ │ ├── hor.png │ │ ├── ver.png │ │ └── ver_hor.png │ ├── touch │ └── touch.md │ ├── tree │ └── tree.md │ ├── uniq │ └── uniq.md │ ├── unrar │ └── unrar.md │ ├── useradd │ └── useradd.md │ ├── usermod │ └── usermod.md │ ├── w │ └── w.md │ ├── watch │ ├── watch.md │ └── watch │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── watch.jpg │ ├── wc │ └── wc.md │ └── wget │ ├── wget.md │ └── wget │ └── cover.png ├── docs ├── 404.html ├── about │ └── index.html ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── book.min.46181bc93375ba932026e753b37c40e6ff8bb16a9ef770c78bcc663e4577b1ba.css ├── browserconfig.xml ├── categories │ ├── index.html │ ├── index.xml │ └── page │ │ └── 1 │ │ └── index.html ├── css │ ├── custom_01.css │ ├── fonts │ │ ├── miriamlibre-bold.woff │ │ └── miriamlibre-bold.woff2 │ ├── images │ │ ├── arrow_effect.svg │ │ ├── icon-tick.svg │ │ └── stripe.svg │ ├── main.min.css │ ├── prism.css │ ├── search.54f9a90ceddfdaa3e66698090e7d4a7e7a7f217c85bc79c48ed09c8cb3ee6777.css │ ├── search.fe0cd54a21628574bff49d721c827d1bb165ab56b0f22dd55ae78addbe61c309.css │ └── styles.css ├── en.search-data.min.9832c03f314a47108b62c5a9bd863f16ea985e785ae6ddc3a9634a80d61411c0.json ├── en.search.min.03ee42be0b34907095418398245bcd68671caad19d541e5516312a607294f8d5.js ├── en │ ├── index.html │ ├── index.xml │ └── supervisor │ │ └── supervisor │ │ └── index.html ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.png ├── favicon.svg ├── flexsearch.min.js ├── fonts │ ├── Courgette-Regular.woff │ ├── league-gothic │ │ ├── LICENSE │ │ ├── league-gothic.eot │ │ ├── league-gothic.ttf │ │ └── league-gothic.woff │ ├── merriweather-black.woff │ ├── merriweather-black.woff2 │ ├── merriweather-bold.woff │ ├── merriweather-bold.woff2 │ ├── merriweather-bolditalic.woff │ ├── merriweather-bolditalic.woff2 │ ├── merriweather-italic.woff │ ├── merriweather-italic.woff2 │ ├── merriweather-regular.woff │ ├── merriweather-regular.woff2 │ ├── montserrat-black.woff │ ├── montserrat-black.woff2 │ ├── montserrat-bold.woff │ ├── montserrat-bold.woff2 │ ├── montserrat-regular.woff │ ├── montserrat-regular.woff2 │ ├── muli-latin-200.woff │ ├── muli-latin-200.woff2 │ ├── muli-latin-200italic.woff │ ├── muli-latin-200italic.woff2 │ ├── muli-latin-300.woff │ ├── muli-latin-300.woff2 │ ├── muli-latin-300italic.woff │ ├── muli-latin-300italic.woff2 │ ├── muli-latin-400.woff │ ├── muli-latin-400.woff2 │ ├── muli-latin-400italic.woff │ ├── muli-latin-400italic.woff2 │ ├── muli-latin-600.woff │ ├── muli-latin-600.woff2 │ ├── muli-latin-600italic.woff │ ├── muli-latin-600italic.woff2 │ ├── muli-latin-700.woff │ ├── muli-latin-700.woff2 │ ├── muli-latin-700italic.woff │ ├── muli-latin-700italic.woff2 │ ├── muli-latin-800.woff │ ├── muli-latin-800.woff2 │ ├── muli-latin-800italic.woff │ ├── muli-latin-800italic.woff2 │ ├── muli-latin-900.woff │ ├── muli-latin-900.woff2 │ ├── muli-latin-900italic.woff │ ├── muli-latin-900italic.woff2 │ ├── roboto-mono-v13-latin-regular.woff │ ├── roboto-mono-v13-latin-regular.woff2 │ ├── roboto-v27-latin-700.woff │ ├── roboto-v27-latin-700.woff2 │ ├── roboto-v27-latin-regular.woff │ ├── roboto-v27-latin-regular.woff2 │ └── source-sans-pro │ │ ├── LICENSE │ │ ├── source-sans-pro-italic.eot │ │ ├── source-sans-pro-italic.ttf │ │ ├── source-sans-pro-italic.woff │ │ ├── source-sans-pro-regular.eot │ │ ├── source-sans-pro-regular.ttf │ │ ├── source-sans-pro-regular.woff │ │ ├── source-sans-pro-semibold.eot │ │ ├── source-sans-pro-semibold.ttf │ │ ├── source-sans-pro-semibold.woff │ │ ├── source-sans-pro-semibolditalic.eot │ │ ├── source-sans-pro-semibolditalic.ttf │ │ └── source-sans-pro-semibolditalic.woff ├── fundamentals │ ├── environment-variables │ │ └── environment-variables │ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── loop-device │ │ └── loop-device │ │ │ └── index.html │ ├── permissions │ │ └── permissions │ │ │ └── index.html │ ├── pipe │ │ └── pipe │ │ │ └── index.html │ ├── shebang │ │ └── shebang │ │ │ └── index.html │ └── swap │ │ └── swap │ │ └── index.html ├── images │ ├── Git │ │ └── git.png │ ├── browser-chrome-android.svg │ ├── browser-chrome.svg │ ├── browser-edge.svg │ ├── browser-firefox-android.svg │ ├── browser-firefox.svg │ ├── browser-ie.svg │ ├── browser-opera.svg │ ├── browser-safari-ios.svg │ ├── browser-safari.svg │ ├── header │ │ └── background.jpg │ ├── icon-info.svg │ ├── icon-tag.svg │ ├── icon-warning.svg │ ├── logo.svg │ ├── logo.svg.back │ ├── nano │ │ └── nano1.png │ ├── supervisor │ │ └── supervisor1.jpg │ └── whoami │ │ └── avatar.jpg ├── index.html ├── index.xml ├── js │ ├── custom_01.js │ ├── dom-scripts.js │ ├── enquire.min.aa37bdcb743826eecdae5c5d177fc7d6552340f1b4378ffaa9c82b2c6111400b.js │ ├── helper │ │ ├── closest.min.js │ │ ├── fadeinout.min.1d13d3e810c3940e80cbba6216a1c76fbf42b5431fc83537ea6997863802362b.js │ │ └── getParents.min.ccd45f158c1b17849307ba913a72beac239c410f2b6e648496a79842da84e55b.js │ ├── lazysizes.min.498676c34eb225e85357ab0ce19c3c1244f3bd0bf595e5684d1b9d50ea4fbc42.js │ ├── prism.js │ ├── search.7aef046a0cc8b0c532f1d20087b920459bc868c936bb48a6ae221eceefca2d07.js │ ├── search.da4e0819db35e5fc5289562d46cf4a2173684e337d69d997639a24b79ecd6416.js │ └── service-worker-registration.js ├── katex │ ├── auto-render.min.js │ ├── fonts │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.min.css │ └── katex.min.js ├── logo-192.png ├── logo-512.png ├── logo.png ├── manifest.json ├── mermaid.min.js ├── mstile-150x150.png ├── nav │ ├── contribute │ │ └── how-to-contribute │ │ │ └── index.html │ ├── index.html │ └── index.xml ├── patterns │ ├── index.html │ ├── index.xml │ └── supervisor │ │ └── supervisor │ │ └── index.html ├── post │ ├── index.html │ └── index.xml ├── posts │ ├── Git │ │ └── Git.md.draft │ ├── awk │ │ └── awk.md.draft │ ├── btop │ │ └── btop │ │ │ ├── Display mode 1.png │ │ │ ├── Display mode 2.png │ │ │ ├── Display mode 3.png │ │ │ ├── Display mode 4.png │ │ │ ├── Killprocess.png │ │ │ ├── Monitoring.png │ │ │ ├── Search for process.png │ │ │ ├── index.html │ │ │ └── process status.png │ ├── cat │ │ └── cat │ │ │ └── index.html │ ├── cd │ │ └── cd │ │ │ ├── cd.jpg │ │ │ ├── cd_ex1.jpg │ │ │ ├── cd_ex2.jpg │ │ │ └── index.html │ ├── comm │ │ ├── comm.md.draft │ │ └── comm │ │ │ └── index.html │ ├── contribute │ │ └── how-to-contribute │ │ │ └── index.html │ ├── cp │ │ └── cp │ │ │ ├── cp.jpg │ │ │ └── index.html │ ├── cron │ │ └── cron │ │ │ ├── cover.jpg │ │ │ ├── field.png │ │ │ └── index.html │ ├── curl │ │ └── curl.md.draft │ ├── cut │ │ └── cut │ │ │ └── index.html │ ├── dd │ │ └── dd │ │ │ ├── dd.jpg │ │ │ └── index.html │ ├── exit │ │ └── exit.md.draft │ ├── fdisk │ │ └── fdisk │ │ │ └── index.html │ ├── file │ │ └── file │ │ │ └── index.html │ ├── find │ │ └── find │ │ │ └── index.html │ ├── fmt │ │ └── fmt │ │ │ └── index.html │ ├── free │ │ └── free │ │ │ └── index.html │ ├── git │ │ └── git │ │ │ └── index.html │ ├── grep │ │ └── grep │ │ │ └── index.html │ ├── groupadd │ │ └── groupadd │ │ │ └── index.html │ ├── gzip │ │ └── gzip │ │ │ └── index.html │ ├── head │ │ └── head │ │ │ └── index.html │ ├── history │ │ └── history │ │ │ └── index.html │ ├── htop │ │ └── htop │ │ │ ├── htop.png │ │ │ ├── index.html │ │ │ ├── kill.png │ │ │ ├── saveoutput.png │ │ │ └── treeView.png │ ├── index.html │ ├── index.xml │ ├── less │ │ └── less │ │ │ └── index.html │ ├── locate │ │ └── locate │ │ │ └── index.html │ ├── ls │ │ └── ls │ │ │ └── index.html │ ├── lsusb │ │ └── lsusb │ │ │ └── index.html │ ├── mkdir │ │ └── mkdir │ │ │ └── index.html │ ├── mkfs │ │ └── mkfs │ │ │ └── index.html │ ├── nano │ │ └── nano │ │ │ ├── View.png │ │ │ ├── index.html │ │ │ └── save1.png │ ├── nc │ │ └── nc │ │ │ ├── index.html │ │ │ └── nc.png │ ├── neofetch │ │ └── neofetch │ │ │ ├── Neofetch.png │ │ │ ├── cat neofetch.png │ │ │ └── index.html │ ├── nl │ │ └── nl │ │ │ └── index.html │ ├── passwd │ │ └── passwd │ │ │ └── index.html │ ├── paste │ │ └── paste │ │ │ └── index.html │ ├── rar │ │ └── rar │ │ │ └── index.html │ ├── redshift │ │ └── redshift │ │ │ └── index.html │ ├── rm │ │ └── rm │ │ │ └── index.html │ ├── shutdown │ │ └── shutdown │ │ │ └── index.html │ ├── sort │ │ └── sort │ │ │ └── index.html │ ├── supervisor │ │ └── supervisor │ │ │ └── index.html │ ├── tail │ │ └── tail │ │ │ └── index.html │ ├── tar │ │ ├── tar.md.draft │ │ └── tar │ │ │ └── index.html │ ├── touch │ │ └── touch │ │ │ └── index.html │ ├── uniq │ │ └── uniq │ │ │ └── index.html │ ├── unrar │ │ └── unrar │ │ │ └── index.html │ ├── useradd │ │ └── useradd │ │ │ └── index.html │ ├── usermod │ │ └── usermod │ │ │ └── index.html │ ├── w │ │ └── w │ │ │ └── index.html │ ├── watch │ │ └── watch │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── index.html │ │ │ └── watch.jpg │ ├── wc │ │ └── wc │ │ │ └── index.html │ └── wget │ │ └── wget │ │ ├── cover.png │ │ └── index.html ├── safari-pinned-tab.svg ├── site.webmanifest ├── sitemap.xml ├── supervisor │ ├── index.html │ ├── index.xml │ └── supervisor │ │ └── index.html ├── svg │ ├── calendar.svg │ ├── edit.svg │ ├── menu.svg │ ├── toc.svg │ └── translate.svg ├── sw.js ├── sw.min.52b3d5edc0dbe8f8ceee454485e7b8869ccbe6a1d8c6c31f84bc0a1c8781bc5f.js ├── tags │ ├── binary │ │ ├── index.html │ │ └── index.xml │ ├── check-network-connectivity │ │ ├── index.html │ │ └── index.xml │ ├── comm │ │ ├── index.html │ │ └── index.xml │ ├── command-line-utility │ │ ├── index.html │ │ └── index.xml │ ├── compare-two-file │ │ ├── index.html │ │ └── index.xml │ ├── cron-tab │ │ ├── index.html │ │ └── index.xml │ ├── cron │ │ ├── index.html │ │ └── index.xml │ ├── df │ │ ├── index.html │ │ └── index.xml │ ├── disk-free │ │ ├── index.html │ │ └── index.xml │ ├── disk-usage │ │ ├── index.html │ │ └── index.xml │ ├── download-manager │ │ ├── index.html │ │ └── index.xml │ ├── download │ │ ├── index.html │ │ └── index.xml │ ├── editor │ │ ├── index.html │ │ └── index.xml │ ├── file-hierarchy │ │ ├── index.html │ │ └── index.xml │ ├── file-systems │ │ ├── index.html │ │ └── index.xml │ ├── file │ │ ├── index.html │ │ └── index.xml │ ├── git │ │ ├── index.html │ │ └── index.xml │ ├── hard-drives │ │ ├── index.html │ │ └── index.xml │ ├── how-to-contribute │ │ ├── index.html │ │ └── index.xml │ ├── index.html │ ├── index.xml │ ├── internet │ │ ├── index.html │ │ └── index.xml │ ├── loop-device-در-لینوکس-چیست │ │ ├── index.html │ │ └── index.xml │ ├── network │ │ ├── index.html │ │ └── index.xml │ ├── nfs │ │ ├── index.html │ │ └── index.xml │ ├── page │ │ └── 1 │ │ │ └── index.html │ ├── ping │ │ ├── index.html │ │ └── index.xml │ ├── process-manager │ │ ├── index.html │ │ └── index.xml │ ├── program │ │ ├── index.html │ │ └── index.xml │ ├── schedule │ │ ├── index.html │ │ └── index.xml │ ├── smb │ │ ├── index.html │ │ └── index.xml │ ├── storage-devices │ │ ├── index.html │ │ └── index.xml │ ├── supervisor │ │ ├── index.html │ │ └── index.xml │ ├── text-processing │ │ ├── index.html │ │ └── index.xml │ ├── tools │ │ ├── index.html │ │ └── index.xml │ ├── vcs │ │ ├── index.html │ │ └── index.xml │ ├── wc │ │ ├── index.html │ │ └── index.xml │ ├── wget │ │ ├── index.html │ │ └── index.xml │ ├── word-count │ │ ├── index.html │ │ └── index.xml │ ├── اینترنت │ │ ├── index.html │ │ └── index.xml │ ├── دانلود │ │ ├── index.html │ │ └── index.xml │ ├── مشارکت │ │ ├── index.html │ │ └── index.xml │ └── مقایسه-فایل │ │ ├── index.html │ │ └── index.xml └── tools │ ├── awk │ └── awk.md.draft │ ├── btop │ └── btop │ │ ├── Display mode 1.png │ │ ├── Display mode 2.png │ │ ├── Display mode 3.png │ │ ├── Display mode 4.png │ │ ├── Killprocess.png │ │ ├── Monitoring.png │ │ ├── Search for process.png │ │ ├── index.html │ │ └── process status.png │ ├── cat │ └── cat │ │ └── index.html │ ├── cd │ └── cd │ │ ├── cd.jpg │ │ ├── cd_ex1.jpg │ │ ├── cd_ex2.jpg │ │ └── index.html │ ├── comm │ └── comm.md.draft │ ├── cp │ └── cp │ │ ├── cp.jpg │ │ └── index.html │ ├── cron │ └── cron │ │ ├── cover.jpg │ │ ├── field.png │ │ └── index.html │ ├── curl │ └── curl.md.draft │ ├── cut │ └── cut │ │ └── index.html │ ├── date │ └── date │ │ └── index.html │ ├── dd │ └── dd │ │ ├── dd.jpg │ │ └── index.html │ ├── df │ └── df │ │ └── index.html │ ├── exit │ └── exit.md.draft │ ├── fdisk │ └── fdisk │ │ └── index.html │ ├── file │ └── file │ │ └── index.html │ ├── find │ └── find │ │ └── index.html │ ├── fmt │ └── fmt │ │ └── index.html │ ├── free │ └── free │ │ └── index.html │ ├── git │ └── git │ │ └── index.html │ ├── grep │ └── grep │ │ └── index.html │ ├── groupadd │ └── groupadd │ │ └── index.html │ ├── gzip │ └── gzip │ │ └── index.html │ ├── head │ └── head │ │ └── index.html │ ├── history │ └── history │ │ └── index.html │ ├── htop │ └── htop │ │ ├── htop.png │ │ ├── index.html │ │ ├── kill.png │ │ ├── saveoutput.png │ │ └── treeView.png │ ├── index.html │ ├── index.xml │ ├── less │ └── less │ │ └── index.html │ ├── locate │ └── locate │ │ └── index.html │ ├── ls │ └── ls │ │ └── index.html │ ├── lsusb │ └── lsusb │ │ └── index.html │ ├── mkdir │ └── mkdir │ │ └── index.html │ ├── mkfs │ └── mkfs │ │ └── index.html │ ├── mount │ └── mount │ │ └── index.html │ ├── mv │ └── mv │ │ └── index.html │ ├── nano │ └── nano │ │ ├── View.png │ │ ├── index.html │ │ └── save1.png │ ├── nc │ └── nc │ │ ├── index.html │ │ └── nc.png │ ├── neofetch │ └── neofetch │ │ ├── Neofetch.png │ │ ├── cat neofetch.png │ │ └── index.html │ ├── nl │ └── nl │ │ └── index.html │ ├── passwd │ └── passwd │ │ └── index.html │ ├── paste │ └── paste │ │ └── index.html │ ├── ping │ └── ping │ │ └── index.html │ ├── rar │ └── rar │ │ └── index.html │ ├── reboot │ └── reboot │ │ └── index.html │ ├── redshift │ └── redshift │ │ └── index.html │ ├── rm │ └── rm │ │ └── index.html │ ├── scp │ └── scp │ │ └── index.html │ ├── shutdown │ └── shutdown │ │ └── index.html │ ├── sort │ └── sort │ │ └── index.html │ ├── tail │ └── tail │ │ └── index.html │ ├── tar │ └── tar.md.draft │ ├── terminator │ └── terminator │ │ ├── example.png │ │ ├── hor.png │ │ ├── index.html │ │ ├── ver.png │ │ └── ver_hor.png │ ├── touch │ └── touch │ │ └── index.html │ ├── tree │ └── tree │ │ └── index.html │ ├── uniq │ └── uniq │ │ └── index.html │ ├── unrar │ └── unrar │ │ └── index.html │ ├── useradd │ └── useradd │ │ └── index.html │ ├── usermod │ └── usermod │ │ └── index.html │ ├── w │ └── w │ │ └── index.html │ ├── watch │ └── watch │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── index.html │ │ └── watch.jpg │ ├── wc │ └── wc │ │ └── index.html │ └── wget │ └── wget │ ├── cover.png │ └── index.html ├── rain.py ├── resources └── _gen │ └── assets │ └── scss │ └── thesecretbit │ ├── book.scss_50fc8c04e12a2f59027287995557ceff.content │ ├── book.scss_50fc8c04e12a2f59027287995557ceff.json │ └── sass │ ├── main.scss_b4f67ac5085b89b62b54c1923e5a9145.content │ └── main.scss_b4f67ac5085b89b62b54c1923e5a9145.json └── static ├── css └── custom_01.css ├── images ├── Git │ └── git.png ├── logo.svg └── logo.svg.back └── js └── custom_01.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--------------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.github/ISSUE_TEMPLATE/--------------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/----------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.github/ISSUE_TEMPLATE/----------.md -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy-on-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.github/workflows/build-and-deploy-on-push.yaml -------------------------------------------------------------------------------- /.github/workflows/label-check-and-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.github/workflows/label-check-and-build.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/configs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/__pycache__/configs.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/configs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/__pycache__/configs.cpython-38.pyc -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/config.yaml -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/configs.py -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/about.md -------------------------------------------------------------------------------- /content/fundamentals/environment variables/environment variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/environment variables/environment variables.md -------------------------------------------------------------------------------- /content/fundamentals/loop-device/loop-device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/loop-device/loop-device.md -------------------------------------------------------------------------------- /content/fundamentals/permissions/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/permissions/permissions.md -------------------------------------------------------------------------------- /content/fundamentals/pipe/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/pipe/pipe.md -------------------------------------------------------------------------------- /content/fundamentals/shebang/shebang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/shebang/shebang.md -------------------------------------------------------------------------------- /content/fundamentals/swap/swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/fundamentals/swap/swap.md -------------------------------------------------------------------------------- /content/nav/contribute/how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/nav/contribute/how-to-contribute.md -------------------------------------------------------------------------------- /content/tools/Git/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/Git/Git.md -------------------------------------------------------------------------------- /content/tools/awk/awk.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/awk/awk.md.draft -------------------------------------------------------------------------------- /content/tools/btop/btop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop.md -------------------------------------------------------------------------------- /content/tools/btop/btop/Display mode 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Display mode 1.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Display mode 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Display mode 2.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Display mode 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Display mode 3.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Display mode 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Display mode 4.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Killprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Killprocess.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Monitoring.png -------------------------------------------------------------------------------- /content/tools/btop/btop/Search for process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/Search for process.png -------------------------------------------------------------------------------- /content/tools/btop/btop/process status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/btop/btop/process status.png -------------------------------------------------------------------------------- /content/tools/cat/cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cat/cat.md -------------------------------------------------------------------------------- /content/tools/cd/cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cd/cd.md -------------------------------------------------------------------------------- /content/tools/cd/cd/cd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cd/cd/cd.jpg -------------------------------------------------------------------------------- /content/tools/cd/cd/cd_ex1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cd/cd/cd_ex1.jpg -------------------------------------------------------------------------------- /content/tools/cd/cd/cd_ex2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cd/cd/cd_ex2.jpg -------------------------------------------------------------------------------- /content/tools/comm/comm.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/comm/comm.md.draft -------------------------------------------------------------------------------- /content/tools/cp/cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cp/cp.md -------------------------------------------------------------------------------- /content/tools/cp/cp/cp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cp/cp/cp.jpg -------------------------------------------------------------------------------- /content/tools/cron/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cron/cron.md -------------------------------------------------------------------------------- /content/tools/cron/cron/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cron/cron/cover.jpg -------------------------------------------------------------------------------- /content/tools/cron/cron/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cron/cron/field.png -------------------------------------------------------------------------------- /content/tools/curl/curl.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/curl/curl.md.draft -------------------------------------------------------------------------------- /content/tools/cut/cut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/cut/cut.md -------------------------------------------------------------------------------- /content/tools/date/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/date/date.md -------------------------------------------------------------------------------- /content/tools/dd/dd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/dd/dd.md -------------------------------------------------------------------------------- /content/tools/dd/dd/dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/dd/dd/dd.jpg -------------------------------------------------------------------------------- /content/tools/df/df.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/df/df.md -------------------------------------------------------------------------------- /content/tools/exit/exit.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/exit/exit.md.draft -------------------------------------------------------------------------------- /content/tools/fdisk/fdisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/fdisk/fdisk.md -------------------------------------------------------------------------------- /content/tools/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/file/file.md -------------------------------------------------------------------------------- /content/tools/find/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/find/find.md -------------------------------------------------------------------------------- /content/tools/fmt/fmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/fmt/fmt.md -------------------------------------------------------------------------------- /content/tools/free/free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/free/free.md -------------------------------------------------------------------------------- /content/tools/grep/grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/grep/grep.md -------------------------------------------------------------------------------- /content/tools/groupadd/groupadd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/groupadd/groupadd.md -------------------------------------------------------------------------------- /content/tools/gzip/gzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/gzip/gzip.md -------------------------------------------------------------------------------- /content/tools/head/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/head/head.md -------------------------------------------------------------------------------- /content/tools/history/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/history/history.md -------------------------------------------------------------------------------- /content/tools/htop/htop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/htop/htop.md -------------------------------------------------------------------------------- /content/tools/htop/htop/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/htop/htop/htop.png -------------------------------------------------------------------------------- /content/tools/htop/htop/kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/htop/htop/kill.png -------------------------------------------------------------------------------- /content/tools/htop/htop/saveoutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/htop/htop/saveoutput.png -------------------------------------------------------------------------------- /content/tools/htop/htop/treeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/htop/htop/treeView.png -------------------------------------------------------------------------------- /content/tools/less/less.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/less/less.md -------------------------------------------------------------------------------- /content/tools/locate/locate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/locate/locate.md -------------------------------------------------------------------------------- /content/tools/ls/ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/ls/ls.md -------------------------------------------------------------------------------- /content/tools/lsusb/lsusb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/lsusb/lsusb.md -------------------------------------------------------------------------------- /content/tools/mkdir/mkdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/mkdir/mkdir.md -------------------------------------------------------------------------------- /content/tools/mkfs/mkfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/mkfs/mkfs.md -------------------------------------------------------------------------------- /content/tools/mount/mount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/mount/mount.md -------------------------------------------------------------------------------- /content/tools/mv/mv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/mv/mv.md -------------------------------------------------------------------------------- /content/tools/nano/nano.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nano/nano.md -------------------------------------------------------------------------------- /content/tools/nano/nano/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nano/nano/View.png -------------------------------------------------------------------------------- /content/tools/nano/nano/save1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nano/nano/save1.png -------------------------------------------------------------------------------- /content/tools/nc/nc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nc/nc.md -------------------------------------------------------------------------------- /content/tools/nc/nc/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nc/nc/nc.png -------------------------------------------------------------------------------- /content/tools/neofetch/neofetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/neofetch/neofetch.md -------------------------------------------------------------------------------- /content/tools/neofetch/neofetch/Neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/neofetch/neofetch/Neofetch.png -------------------------------------------------------------------------------- /content/tools/neofetch/neofetch/cat neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/neofetch/neofetch/cat neofetch.png -------------------------------------------------------------------------------- /content/tools/nl/nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/nl/nl.md -------------------------------------------------------------------------------- /content/tools/passwd/passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/passwd/passwd.md -------------------------------------------------------------------------------- /content/tools/paste/paste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/paste/paste.md -------------------------------------------------------------------------------- /content/tools/ping/ping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/ping/ping.md -------------------------------------------------------------------------------- /content/tools/pwd/pwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/pwd/pwd.md -------------------------------------------------------------------------------- /content/tools/rar/rar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/rar/rar.md -------------------------------------------------------------------------------- /content/tools/reboot/reboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/reboot/reboot.md -------------------------------------------------------------------------------- /content/tools/redshift/redshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/redshift/redshift.md -------------------------------------------------------------------------------- /content/tools/rm/rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/rm/rm.md -------------------------------------------------------------------------------- /content/tools/scp/scp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/scp/scp.md -------------------------------------------------------------------------------- /content/tools/shutdown/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/shutdown/shutdown.md -------------------------------------------------------------------------------- /content/tools/sort/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/sort/sort.md -------------------------------------------------------------------------------- /content/tools/tail/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/tail/tail.md -------------------------------------------------------------------------------- /content/tools/tar/tar.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/tar/tar.md.draft -------------------------------------------------------------------------------- /content/tools/terminator/terminator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/terminator/terminator.md -------------------------------------------------------------------------------- /content/tools/terminator/terminator/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/terminator/terminator/example.png -------------------------------------------------------------------------------- /content/tools/terminator/terminator/hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/terminator/terminator/hor.png -------------------------------------------------------------------------------- /content/tools/terminator/terminator/ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/terminator/terminator/ver.png -------------------------------------------------------------------------------- /content/tools/terminator/terminator/ver_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/terminator/terminator/ver_hor.png -------------------------------------------------------------------------------- /content/tools/touch/touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/touch/touch.md -------------------------------------------------------------------------------- /content/tools/tree/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/tree/tree.md -------------------------------------------------------------------------------- /content/tools/uniq/uniq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/uniq/uniq.md -------------------------------------------------------------------------------- /content/tools/unrar/unrar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/unrar/unrar.md -------------------------------------------------------------------------------- /content/tools/useradd/useradd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/useradd/useradd.md -------------------------------------------------------------------------------- /content/tools/usermod/usermod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/usermod/usermod.md -------------------------------------------------------------------------------- /content/tools/w/w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/w/w.md -------------------------------------------------------------------------------- /content/tools/watch/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/watch/watch.md -------------------------------------------------------------------------------- /content/tools/watch/watch/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/watch/watch/1.jpg -------------------------------------------------------------------------------- /content/tools/watch/watch/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/watch/watch/2.jpg -------------------------------------------------------------------------------- /content/tools/watch/watch/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/watch/watch/watch.jpg -------------------------------------------------------------------------------- /content/tools/wc/wc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/wc/wc.md -------------------------------------------------------------------------------- /content/tools/wget/wget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/wget/wget.md -------------------------------------------------------------------------------- /content/tools/wget/wget/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/content/tools/wget/wget/cover.png -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/about/index.html -------------------------------------------------------------------------------- /docs/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/book.min.46181bc93375ba932026e753b37c40e6ff8bb16a9ef770c78bcc663e4577b1ba.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/book.min.46181bc93375ba932026e753b37c40e6ff8bb16a9ef770c78bcc663e4577b1ba.css -------------------------------------------------------------------------------- /docs/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/browserconfig.xml -------------------------------------------------------------------------------- /docs/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/categories/index.html -------------------------------------------------------------------------------- /docs/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/categories/index.xml -------------------------------------------------------------------------------- /docs/categories/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/categories/page/1/index.html -------------------------------------------------------------------------------- /docs/css/custom_01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/custom_01.css -------------------------------------------------------------------------------- /docs/css/fonts/miriamlibre-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/fonts/miriamlibre-bold.woff -------------------------------------------------------------------------------- /docs/css/fonts/miriamlibre-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/fonts/miriamlibre-bold.woff2 -------------------------------------------------------------------------------- /docs/css/images/arrow_effect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/images/arrow_effect.svg -------------------------------------------------------------------------------- /docs/css/images/icon-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/images/icon-tick.svg -------------------------------------------------------------------------------- /docs/css/images/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/images/stripe.svg -------------------------------------------------------------------------------- /docs/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/main.min.css -------------------------------------------------------------------------------- /docs/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/prism.css -------------------------------------------------------------------------------- /docs/css/search.54f9a90ceddfdaa3e66698090e7d4a7e7a7f217c85bc79c48ed09c8cb3ee6777.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/search.54f9a90ceddfdaa3e66698090e7d4a7e7a7f217c85bc79c48ed09c8cb3ee6777.css -------------------------------------------------------------------------------- /docs/css/search.fe0cd54a21628574bff49d721c827d1bb165ab56b0f22dd55ae78addbe61c309.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/search.fe0cd54a21628574bff49d721c827d1bb165ab56b0f22dd55ae78addbe61c309.css -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/en.search-data.min.9832c03f314a47108b62c5a9bd863f16ea985e785ae6ddc3a9634a80d61411c0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/en.search-data.min.9832c03f314a47108b62c5a9bd863f16ea985e785ae6ddc3a9634a80d61411c0.json -------------------------------------------------------------------------------- /docs/en.search.min.03ee42be0b34907095418398245bcd68671caad19d541e5516312a607294f8d5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/en.search.min.03ee42be0b34907095418398245bcd68671caad19d541e5516312a607294f8d5.js -------------------------------------------------------------------------------- /docs/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/en/index.html -------------------------------------------------------------------------------- /docs/en/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/en/index.xml -------------------------------------------------------------------------------- /docs/en/supervisor/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/en/supervisor/supervisor/index.html -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon-96x96.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/flexsearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/flexsearch.min.js -------------------------------------------------------------------------------- /docs/fonts/Courgette-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/Courgette-Regular.woff -------------------------------------------------------------------------------- /docs/fonts/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/league-gothic/LICENSE -------------------------------------------------------------------------------- /docs/fonts/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /docs/fonts/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /docs/fonts/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-black.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-black.woff2 -------------------------------------------------------------------------------- /docs/fonts/merriweather-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-bold.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-bold.woff2 -------------------------------------------------------------------------------- /docs/fonts/merriweather-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-bolditalic.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/fonts/merriweather-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-italic.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/merriweather-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-regular.woff -------------------------------------------------------------------------------- /docs/fonts/merriweather-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/merriweather-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/montserrat-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-black.woff -------------------------------------------------------------------------------- /docs/fonts/montserrat-black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-black.woff2 -------------------------------------------------------------------------------- /docs/fonts/montserrat-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-bold.woff -------------------------------------------------------------------------------- /docs/fonts/montserrat-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-bold.woff2 -------------------------------------------------------------------------------- /docs/fonts/montserrat-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-regular.woff -------------------------------------------------------------------------------- /docs/fonts/montserrat-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/montserrat-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-200.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-200.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-200italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-200italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-200italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-200italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-300.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-300.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-300italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-300italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-400.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-400.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-400italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-400italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-400italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-400italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-600.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-600.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-600italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-600italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-600italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-700.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-700.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-700italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-700italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-800.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-800.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-800italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-800italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-800italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-900.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-900.woff2 -------------------------------------------------------------------------------- /docs/fonts/muli-latin-900italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-900italic.woff -------------------------------------------------------------------------------- /docs/fonts/muli-latin-900italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/muli-latin-900italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/roboto-mono-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-mono-v13-latin-regular.woff -------------------------------------------------------------------------------- /docs/fonts/roboto-mono-v13-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-mono-v13-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/roboto-v27-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-v27-latin-700.woff -------------------------------------------------------------------------------- /docs/fonts/roboto-v27-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-v27-latin-700.woff2 -------------------------------------------------------------------------------- /docs/fonts/roboto-v27-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-v27-latin-regular.woff -------------------------------------------------------------------------------- /docs/fonts/roboto-v27-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/roboto-v27-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /docs/fundamentals/environment-variables/environment-variables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/environment-variables/environment-variables/index.html -------------------------------------------------------------------------------- /docs/fundamentals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/index.html -------------------------------------------------------------------------------- /docs/fundamentals/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/index.xml -------------------------------------------------------------------------------- /docs/fundamentals/loop-device/loop-device/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/loop-device/loop-device/index.html -------------------------------------------------------------------------------- /docs/fundamentals/permissions/permissions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/permissions/permissions/index.html -------------------------------------------------------------------------------- /docs/fundamentals/pipe/pipe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/pipe/pipe/index.html -------------------------------------------------------------------------------- /docs/fundamentals/shebang/shebang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/shebang/shebang/index.html -------------------------------------------------------------------------------- /docs/fundamentals/swap/swap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/fundamentals/swap/swap/index.html -------------------------------------------------------------------------------- /docs/images/Git/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/Git/git.png -------------------------------------------------------------------------------- /docs/images/browser-chrome-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-chrome-android.svg -------------------------------------------------------------------------------- /docs/images/browser-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-chrome.svg -------------------------------------------------------------------------------- /docs/images/browser-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-edge.svg -------------------------------------------------------------------------------- /docs/images/browser-firefox-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-firefox-android.svg -------------------------------------------------------------------------------- /docs/images/browser-firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-firefox.svg -------------------------------------------------------------------------------- /docs/images/browser-ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-ie.svg -------------------------------------------------------------------------------- /docs/images/browser-opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-opera.svg -------------------------------------------------------------------------------- /docs/images/browser-safari-ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-safari-ios.svg -------------------------------------------------------------------------------- /docs/images/browser-safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/browser-safari.svg -------------------------------------------------------------------------------- /docs/images/header/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/header/background.jpg -------------------------------------------------------------------------------- /docs/images/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/icon-info.svg -------------------------------------------------------------------------------- /docs/images/icon-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/icon-tag.svg -------------------------------------------------------------------------------- /docs/images/icon-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/icon-warning.svg -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/logo.svg.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/logo.svg.back -------------------------------------------------------------------------------- /docs/images/nano/nano1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/nano/nano1.png -------------------------------------------------------------------------------- /docs/images/supervisor/supervisor1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/supervisor/supervisor1.jpg -------------------------------------------------------------------------------- /docs/images/whoami/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/images/whoami/avatar.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/index.xml -------------------------------------------------------------------------------- /docs/js/custom_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/custom_01.js -------------------------------------------------------------------------------- /docs/js/dom-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/dom-scripts.js -------------------------------------------------------------------------------- /docs/js/enquire.min.aa37bdcb743826eecdae5c5d177fc7d6552340f1b4378ffaa9c82b2c6111400b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/enquire.min.aa37bdcb743826eecdae5c5d177fc7d6552340f1b4378ffaa9c82b2c6111400b.js -------------------------------------------------------------------------------- /docs/js/helper/closest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/helper/closest.min.js -------------------------------------------------------------------------------- /docs/js/helper/fadeinout.min.1d13d3e810c3940e80cbba6216a1c76fbf42b5431fc83537ea6997863802362b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/helper/fadeinout.min.1d13d3e810c3940e80cbba6216a1c76fbf42b5431fc83537ea6997863802362b.js -------------------------------------------------------------------------------- /docs/js/helper/getParents.min.ccd45f158c1b17849307ba913a72beac239c410f2b6e648496a79842da84e55b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/helper/getParents.min.ccd45f158c1b17849307ba913a72beac239c410f2b6e648496a79842da84e55b.js -------------------------------------------------------------------------------- /docs/js/lazysizes.min.498676c34eb225e85357ab0ce19c3c1244f3bd0bf595e5684d1b9d50ea4fbc42.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/lazysizes.min.498676c34eb225e85357ab0ce19c3c1244f3bd0bf595e5684d1b9d50ea4fbc42.js -------------------------------------------------------------------------------- /docs/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/prism.js -------------------------------------------------------------------------------- /docs/js/search.7aef046a0cc8b0c532f1d20087b920459bc868c936bb48a6ae221eceefca2d07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/search.7aef046a0cc8b0c532f1d20087b920459bc868c936bb48a6ae221eceefca2d07.js -------------------------------------------------------------------------------- /docs/js/search.da4e0819db35e5fc5289562d46cf4a2173684e337d69d997639a24b79ecd6416.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/search.da4e0819db35e5fc5289562d46cf4a2173684e337d69d997639a24b79ecd6416.js -------------------------------------------------------------------------------- /docs/js/service-worker-registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/js/service-worker-registration.js -------------------------------------------------------------------------------- /docs/katex/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/auto-render.min.js -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/katex/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/katex/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/katex.min.css -------------------------------------------------------------------------------- /docs/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/katex/katex.min.js -------------------------------------------------------------------------------- /docs/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/logo-192.png -------------------------------------------------------------------------------- /docs/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/logo-512.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/mermaid.min.js -------------------------------------------------------------------------------- /docs/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/mstile-150x150.png -------------------------------------------------------------------------------- /docs/nav/contribute/how-to-contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/nav/contribute/how-to-contribute/index.html -------------------------------------------------------------------------------- /docs/nav/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/nav/index.html -------------------------------------------------------------------------------- /docs/nav/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/nav/index.xml -------------------------------------------------------------------------------- /docs/patterns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/patterns/index.html -------------------------------------------------------------------------------- /docs/patterns/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/patterns/index.xml -------------------------------------------------------------------------------- /docs/patterns/supervisor/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/patterns/supervisor/supervisor/index.html -------------------------------------------------------------------------------- /docs/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/post/index.html -------------------------------------------------------------------------------- /docs/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/post/index.xml -------------------------------------------------------------------------------- /docs/posts/Git/Git.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/Git/Git.md.draft -------------------------------------------------------------------------------- /docs/posts/awk/awk.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/awk/awk.md.draft -------------------------------------------------------------------------------- /docs/posts/btop/btop/Display mode 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Display mode 1.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Display mode 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Display mode 2.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Display mode 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Display mode 3.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Display mode 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Display mode 4.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Killprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Killprocess.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Monitoring.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/Search for process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/Search for process.png -------------------------------------------------------------------------------- /docs/posts/btop/btop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/index.html -------------------------------------------------------------------------------- /docs/posts/btop/btop/process status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/btop/btop/process status.png -------------------------------------------------------------------------------- /docs/posts/cat/cat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cat/cat/index.html -------------------------------------------------------------------------------- /docs/posts/cd/cd/cd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cd/cd/cd.jpg -------------------------------------------------------------------------------- /docs/posts/cd/cd/cd_ex1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cd/cd/cd_ex1.jpg -------------------------------------------------------------------------------- /docs/posts/cd/cd/cd_ex2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cd/cd/cd_ex2.jpg -------------------------------------------------------------------------------- /docs/posts/cd/cd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cd/cd/index.html -------------------------------------------------------------------------------- /docs/posts/comm/comm.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/comm/comm.md.draft -------------------------------------------------------------------------------- /docs/posts/comm/comm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/comm/comm/index.html -------------------------------------------------------------------------------- /docs/posts/contribute/how-to-contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/contribute/how-to-contribute/index.html -------------------------------------------------------------------------------- /docs/posts/cp/cp/cp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cp/cp/cp.jpg -------------------------------------------------------------------------------- /docs/posts/cp/cp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cp/cp/index.html -------------------------------------------------------------------------------- /docs/posts/cron/cron/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cron/cron/cover.jpg -------------------------------------------------------------------------------- /docs/posts/cron/cron/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cron/cron/field.png -------------------------------------------------------------------------------- /docs/posts/cron/cron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cron/cron/index.html -------------------------------------------------------------------------------- /docs/posts/curl/curl.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/curl/curl.md.draft -------------------------------------------------------------------------------- /docs/posts/cut/cut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/cut/cut/index.html -------------------------------------------------------------------------------- /docs/posts/dd/dd/dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/dd/dd/dd.jpg -------------------------------------------------------------------------------- /docs/posts/dd/dd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/dd/dd/index.html -------------------------------------------------------------------------------- /docs/posts/exit/exit.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/exit/exit.md.draft -------------------------------------------------------------------------------- /docs/posts/fdisk/fdisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/fdisk/fdisk/index.html -------------------------------------------------------------------------------- /docs/posts/file/file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/file/file/index.html -------------------------------------------------------------------------------- /docs/posts/find/find/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/find/find/index.html -------------------------------------------------------------------------------- /docs/posts/fmt/fmt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/fmt/fmt/index.html -------------------------------------------------------------------------------- /docs/posts/free/free/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/free/free/index.html -------------------------------------------------------------------------------- /docs/posts/git/git/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/git/git/index.html -------------------------------------------------------------------------------- /docs/posts/grep/grep/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/grep/grep/index.html -------------------------------------------------------------------------------- /docs/posts/groupadd/groupadd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/groupadd/groupadd/index.html -------------------------------------------------------------------------------- /docs/posts/gzip/gzip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/gzip/gzip/index.html -------------------------------------------------------------------------------- /docs/posts/head/head/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/head/head/index.html -------------------------------------------------------------------------------- /docs/posts/history/history/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/history/history/index.html -------------------------------------------------------------------------------- /docs/posts/htop/htop/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/htop/htop/htop.png -------------------------------------------------------------------------------- /docs/posts/htop/htop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/htop/htop/index.html -------------------------------------------------------------------------------- /docs/posts/htop/htop/kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/htop/htop/kill.png -------------------------------------------------------------------------------- /docs/posts/htop/htop/saveoutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/htop/htop/saveoutput.png -------------------------------------------------------------------------------- /docs/posts/htop/htop/treeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/htop/htop/treeView.png -------------------------------------------------------------------------------- /docs/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/index.html -------------------------------------------------------------------------------- /docs/posts/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/index.xml -------------------------------------------------------------------------------- /docs/posts/less/less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/less/less/index.html -------------------------------------------------------------------------------- /docs/posts/locate/locate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/locate/locate/index.html -------------------------------------------------------------------------------- /docs/posts/ls/ls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/ls/ls/index.html -------------------------------------------------------------------------------- /docs/posts/lsusb/lsusb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/lsusb/lsusb/index.html -------------------------------------------------------------------------------- /docs/posts/mkdir/mkdir/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/mkdir/mkdir/index.html -------------------------------------------------------------------------------- /docs/posts/mkfs/mkfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/mkfs/mkfs/index.html -------------------------------------------------------------------------------- /docs/posts/nano/nano/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nano/nano/View.png -------------------------------------------------------------------------------- /docs/posts/nano/nano/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nano/nano/index.html -------------------------------------------------------------------------------- /docs/posts/nano/nano/save1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nano/nano/save1.png -------------------------------------------------------------------------------- /docs/posts/nc/nc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nc/nc/index.html -------------------------------------------------------------------------------- /docs/posts/nc/nc/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nc/nc/nc.png -------------------------------------------------------------------------------- /docs/posts/neofetch/neofetch/Neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/neofetch/neofetch/Neofetch.png -------------------------------------------------------------------------------- /docs/posts/neofetch/neofetch/cat neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/neofetch/neofetch/cat neofetch.png -------------------------------------------------------------------------------- /docs/posts/neofetch/neofetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/neofetch/neofetch/index.html -------------------------------------------------------------------------------- /docs/posts/nl/nl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/nl/nl/index.html -------------------------------------------------------------------------------- /docs/posts/passwd/passwd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/passwd/passwd/index.html -------------------------------------------------------------------------------- /docs/posts/paste/paste/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/paste/paste/index.html -------------------------------------------------------------------------------- /docs/posts/rar/rar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/rar/rar/index.html -------------------------------------------------------------------------------- /docs/posts/redshift/redshift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/redshift/redshift/index.html -------------------------------------------------------------------------------- /docs/posts/rm/rm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/rm/rm/index.html -------------------------------------------------------------------------------- /docs/posts/shutdown/shutdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/shutdown/shutdown/index.html -------------------------------------------------------------------------------- /docs/posts/sort/sort/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/sort/sort/index.html -------------------------------------------------------------------------------- /docs/posts/supervisor/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/supervisor/supervisor/index.html -------------------------------------------------------------------------------- /docs/posts/tail/tail/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/tail/tail/index.html -------------------------------------------------------------------------------- /docs/posts/tar/tar.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/tar/tar.md.draft -------------------------------------------------------------------------------- /docs/posts/tar/tar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/tar/tar/index.html -------------------------------------------------------------------------------- /docs/posts/touch/touch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/touch/touch/index.html -------------------------------------------------------------------------------- /docs/posts/uniq/uniq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/uniq/uniq/index.html -------------------------------------------------------------------------------- /docs/posts/unrar/unrar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/unrar/unrar/index.html -------------------------------------------------------------------------------- /docs/posts/useradd/useradd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/useradd/useradd/index.html -------------------------------------------------------------------------------- /docs/posts/usermod/usermod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/usermod/usermod/index.html -------------------------------------------------------------------------------- /docs/posts/w/w/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/w/w/index.html -------------------------------------------------------------------------------- /docs/posts/watch/watch/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/watch/watch/1.jpg -------------------------------------------------------------------------------- /docs/posts/watch/watch/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/watch/watch/2.jpg -------------------------------------------------------------------------------- /docs/posts/watch/watch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/watch/watch/index.html -------------------------------------------------------------------------------- /docs/posts/watch/watch/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/watch/watch/watch.jpg -------------------------------------------------------------------------------- /docs/posts/wc/wc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/wc/wc/index.html -------------------------------------------------------------------------------- /docs/posts/wget/wget/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/wget/wget/cover.png -------------------------------------------------------------------------------- /docs/posts/wget/wget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/posts/wget/wget/index.html -------------------------------------------------------------------------------- /docs/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/supervisor/index.html -------------------------------------------------------------------------------- /docs/supervisor/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/supervisor/index.xml -------------------------------------------------------------------------------- /docs/supervisor/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/supervisor/supervisor/index.html -------------------------------------------------------------------------------- /docs/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/svg/calendar.svg -------------------------------------------------------------------------------- /docs/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/svg/edit.svg -------------------------------------------------------------------------------- /docs/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/svg/menu.svg -------------------------------------------------------------------------------- /docs/svg/toc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/svg/toc.svg -------------------------------------------------------------------------------- /docs/svg/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/svg/translate.svg -------------------------------------------------------------------------------- /docs/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/sw.js -------------------------------------------------------------------------------- /docs/sw.min.52b3d5edc0dbe8f8ceee454485e7b8869ccbe6a1d8c6c31f84bc0a1c8781bc5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/sw.min.52b3d5edc0dbe8f8ceee454485e7b8869ccbe6a1d8c6c31f84bc0a1c8781bc5f.js -------------------------------------------------------------------------------- /docs/tags/binary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/binary/index.html -------------------------------------------------------------------------------- /docs/tags/binary/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/binary/index.xml -------------------------------------------------------------------------------- /docs/tags/check-network-connectivity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/check-network-connectivity/index.html -------------------------------------------------------------------------------- /docs/tags/check-network-connectivity/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/check-network-connectivity/index.xml -------------------------------------------------------------------------------- /docs/tags/comm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/comm/index.html -------------------------------------------------------------------------------- /docs/tags/comm/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/comm/index.xml -------------------------------------------------------------------------------- /docs/tags/command-line-utility/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/command-line-utility/index.html -------------------------------------------------------------------------------- /docs/tags/command-line-utility/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/command-line-utility/index.xml -------------------------------------------------------------------------------- /docs/tags/compare-two-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/compare-two-file/index.html -------------------------------------------------------------------------------- /docs/tags/compare-two-file/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/compare-two-file/index.xml -------------------------------------------------------------------------------- /docs/tags/cron-tab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/cron-tab/index.html -------------------------------------------------------------------------------- /docs/tags/cron-tab/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/cron-tab/index.xml -------------------------------------------------------------------------------- /docs/tags/cron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/cron/index.html -------------------------------------------------------------------------------- /docs/tags/cron/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/cron/index.xml -------------------------------------------------------------------------------- /docs/tags/df/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/df/index.html -------------------------------------------------------------------------------- /docs/tags/df/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/df/index.xml -------------------------------------------------------------------------------- /docs/tags/disk-free/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/disk-free/index.html -------------------------------------------------------------------------------- /docs/tags/disk-free/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/disk-free/index.xml -------------------------------------------------------------------------------- /docs/tags/disk-usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/disk-usage/index.html -------------------------------------------------------------------------------- /docs/tags/disk-usage/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/disk-usage/index.xml -------------------------------------------------------------------------------- /docs/tags/download-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/download-manager/index.html -------------------------------------------------------------------------------- /docs/tags/download-manager/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/download-manager/index.xml -------------------------------------------------------------------------------- /docs/tags/download/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/download/index.html -------------------------------------------------------------------------------- /docs/tags/download/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/download/index.xml -------------------------------------------------------------------------------- /docs/tags/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/editor/index.html -------------------------------------------------------------------------------- /docs/tags/editor/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/editor/index.xml -------------------------------------------------------------------------------- /docs/tags/file-hierarchy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file-hierarchy/index.html -------------------------------------------------------------------------------- /docs/tags/file-hierarchy/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file-hierarchy/index.xml -------------------------------------------------------------------------------- /docs/tags/file-systems/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file-systems/index.html -------------------------------------------------------------------------------- /docs/tags/file-systems/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file-systems/index.xml -------------------------------------------------------------------------------- /docs/tags/file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file/index.html -------------------------------------------------------------------------------- /docs/tags/file/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/file/index.xml -------------------------------------------------------------------------------- /docs/tags/git/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/git/index.html -------------------------------------------------------------------------------- /docs/tags/git/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/git/index.xml -------------------------------------------------------------------------------- /docs/tags/hard-drives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/hard-drives/index.html -------------------------------------------------------------------------------- /docs/tags/hard-drives/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/hard-drives/index.xml -------------------------------------------------------------------------------- /docs/tags/how-to-contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/how-to-contribute/index.html -------------------------------------------------------------------------------- /docs/tags/how-to-contribute/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/how-to-contribute/index.xml -------------------------------------------------------------------------------- /docs/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/index.html -------------------------------------------------------------------------------- /docs/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/index.xml -------------------------------------------------------------------------------- /docs/tags/internet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/internet/index.html -------------------------------------------------------------------------------- /docs/tags/internet/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/internet/index.xml -------------------------------------------------------------------------------- /docs/tags/loop-device-در-لینوکس-چیست/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/loop-device-در-لینوکس-چیست/index.html -------------------------------------------------------------------------------- /docs/tags/loop-device-در-لینوکس-چیست/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/loop-device-در-لینوکس-چیست/index.xml -------------------------------------------------------------------------------- /docs/tags/network/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/network/index.html -------------------------------------------------------------------------------- /docs/tags/network/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/network/index.xml -------------------------------------------------------------------------------- /docs/tags/nfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/nfs/index.html -------------------------------------------------------------------------------- /docs/tags/nfs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/nfs/index.xml -------------------------------------------------------------------------------- /docs/tags/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/page/1/index.html -------------------------------------------------------------------------------- /docs/tags/ping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/ping/index.html -------------------------------------------------------------------------------- /docs/tags/ping/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/ping/index.xml -------------------------------------------------------------------------------- /docs/tags/process-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/process-manager/index.html -------------------------------------------------------------------------------- /docs/tags/process-manager/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/process-manager/index.xml -------------------------------------------------------------------------------- /docs/tags/program/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/program/index.html -------------------------------------------------------------------------------- /docs/tags/program/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/program/index.xml -------------------------------------------------------------------------------- /docs/tags/schedule/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/schedule/index.html -------------------------------------------------------------------------------- /docs/tags/schedule/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/schedule/index.xml -------------------------------------------------------------------------------- /docs/tags/smb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/smb/index.html -------------------------------------------------------------------------------- /docs/tags/smb/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/smb/index.xml -------------------------------------------------------------------------------- /docs/tags/storage-devices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/storage-devices/index.html -------------------------------------------------------------------------------- /docs/tags/storage-devices/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/storage-devices/index.xml -------------------------------------------------------------------------------- /docs/tags/supervisor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/supervisor/index.html -------------------------------------------------------------------------------- /docs/tags/supervisor/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/supervisor/index.xml -------------------------------------------------------------------------------- /docs/tags/text-processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/text-processing/index.html -------------------------------------------------------------------------------- /docs/tags/text-processing/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/text-processing/index.xml -------------------------------------------------------------------------------- /docs/tags/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/tools/index.html -------------------------------------------------------------------------------- /docs/tags/tools/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/tools/index.xml -------------------------------------------------------------------------------- /docs/tags/vcs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/vcs/index.html -------------------------------------------------------------------------------- /docs/tags/vcs/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/vcs/index.xml -------------------------------------------------------------------------------- /docs/tags/wc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/wc/index.html -------------------------------------------------------------------------------- /docs/tags/wc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/wc/index.xml -------------------------------------------------------------------------------- /docs/tags/wget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/wget/index.html -------------------------------------------------------------------------------- /docs/tags/wget/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/wget/index.xml -------------------------------------------------------------------------------- /docs/tags/word-count/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/word-count/index.html -------------------------------------------------------------------------------- /docs/tags/word-count/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/word-count/index.xml -------------------------------------------------------------------------------- /docs/tags/اینترنت/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/اینترنت/index.html -------------------------------------------------------------------------------- /docs/tags/اینترنت/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/اینترنت/index.xml -------------------------------------------------------------------------------- /docs/tags/دانلود/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/دانلود/index.html -------------------------------------------------------------------------------- /docs/tags/دانلود/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/دانلود/index.xml -------------------------------------------------------------------------------- /docs/tags/مشارکت/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/مشارکت/index.html -------------------------------------------------------------------------------- /docs/tags/مشارکت/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/مشارکت/index.xml -------------------------------------------------------------------------------- /docs/tags/مقایسه-فایل/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/مقایسه-فایل/index.html -------------------------------------------------------------------------------- /docs/tags/مقایسه-فایل/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tags/مقایسه-فایل/index.xml -------------------------------------------------------------------------------- /docs/tools/awk/awk.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/awk/awk.md.draft -------------------------------------------------------------------------------- /docs/tools/btop/btop/Display mode 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Display mode 1.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Display mode 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Display mode 2.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Display mode 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Display mode 3.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Display mode 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Display mode 4.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Killprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Killprocess.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Monitoring.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/Search for process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/Search for process.png -------------------------------------------------------------------------------- /docs/tools/btop/btop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/index.html -------------------------------------------------------------------------------- /docs/tools/btop/btop/process status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/btop/btop/process status.png -------------------------------------------------------------------------------- /docs/tools/cat/cat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cat/cat/index.html -------------------------------------------------------------------------------- /docs/tools/cd/cd/cd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cd/cd/cd.jpg -------------------------------------------------------------------------------- /docs/tools/cd/cd/cd_ex1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cd/cd/cd_ex1.jpg -------------------------------------------------------------------------------- /docs/tools/cd/cd/cd_ex2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cd/cd/cd_ex2.jpg -------------------------------------------------------------------------------- /docs/tools/cd/cd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cd/cd/index.html -------------------------------------------------------------------------------- /docs/tools/comm/comm.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/comm/comm.md.draft -------------------------------------------------------------------------------- /docs/tools/cp/cp/cp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cp/cp/cp.jpg -------------------------------------------------------------------------------- /docs/tools/cp/cp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cp/cp/index.html -------------------------------------------------------------------------------- /docs/tools/cron/cron/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cron/cron/cover.jpg -------------------------------------------------------------------------------- /docs/tools/cron/cron/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cron/cron/field.png -------------------------------------------------------------------------------- /docs/tools/cron/cron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cron/cron/index.html -------------------------------------------------------------------------------- /docs/tools/curl/curl.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/curl/curl.md.draft -------------------------------------------------------------------------------- /docs/tools/cut/cut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/cut/cut/index.html -------------------------------------------------------------------------------- /docs/tools/date/date/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/date/date/index.html -------------------------------------------------------------------------------- /docs/tools/dd/dd/dd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/dd/dd/dd.jpg -------------------------------------------------------------------------------- /docs/tools/dd/dd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/dd/dd/index.html -------------------------------------------------------------------------------- /docs/tools/df/df/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/df/df/index.html -------------------------------------------------------------------------------- /docs/tools/exit/exit.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/exit/exit.md.draft -------------------------------------------------------------------------------- /docs/tools/fdisk/fdisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/fdisk/fdisk/index.html -------------------------------------------------------------------------------- /docs/tools/file/file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/file/file/index.html -------------------------------------------------------------------------------- /docs/tools/find/find/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/find/find/index.html -------------------------------------------------------------------------------- /docs/tools/fmt/fmt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/fmt/fmt/index.html -------------------------------------------------------------------------------- /docs/tools/free/free/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/free/free/index.html -------------------------------------------------------------------------------- /docs/tools/git/git/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/git/git/index.html -------------------------------------------------------------------------------- /docs/tools/grep/grep/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/grep/grep/index.html -------------------------------------------------------------------------------- /docs/tools/groupadd/groupadd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/groupadd/groupadd/index.html -------------------------------------------------------------------------------- /docs/tools/gzip/gzip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/gzip/gzip/index.html -------------------------------------------------------------------------------- /docs/tools/head/head/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/head/head/index.html -------------------------------------------------------------------------------- /docs/tools/history/history/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/history/history/index.html -------------------------------------------------------------------------------- /docs/tools/htop/htop/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/htop/htop/htop.png -------------------------------------------------------------------------------- /docs/tools/htop/htop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/htop/htop/index.html -------------------------------------------------------------------------------- /docs/tools/htop/htop/kill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/htop/htop/kill.png -------------------------------------------------------------------------------- /docs/tools/htop/htop/saveoutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/htop/htop/saveoutput.png -------------------------------------------------------------------------------- /docs/tools/htop/htop/treeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/htop/htop/treeView.png -------------------------------------------------------------------------------- /docs/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/index.html -------------------------------------------------------------------------------- /docs/tools/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/index.xml -------------------------------------------------------------------------------- /docs/tools/less/less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/less/less/index.html -------------------------------------------------------------------------------- /docs/tools/locate/locate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/locate/locate/index.html -------------------------------------------------------------------------------- /docs/tools/ls/ls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/ls/ls/index.html -------------------------------------------------------------------------------- /docs/tools/lsusb/lsusb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/lsusb/lsusb/index.html -------------------------------------------------------------------------------- /docs/tools/mkdir/mkdir/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/mkdir/mkdir/index.html -------------------------------------------------------------------------------- /docs/tools/mkfs/mkfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/mkfs/mkfs/index.html -------------------------------------------------------------------------------- /docs/tools/mount/mount/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/mount/mount/index.html -------------------------------------------------------------------------------- /docs/tools/mv/mv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/mv/mv/index.html -------------------------------------------------------------------------------- /docs/tools/nano/nano/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nano/nano/View.png -------------------------------------------------------------------------------- /docs/tools/nano/nano/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nano/nano/index.html -------------------------------------------------------------------------------- /docs/tools/nano/nano/save1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nano/nano/save1.png -------------------------------------------------------------------------------- /docs/tools/nc/nc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nc/nc/index.html -------------------------------------------------------------------------------- /docs/tools/nc/nc/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nc/nc/nc.png -------------------------------------------------------------------------------- /docs/tools/neofetch/neofetch/Neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/neofetch/neofetch/Neofetch.png -------------------------------------------------------------------------------- /docs/tools/neofetch/neofetch/cat neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/neofetch/neofetch/cat neofetch.png -------------------------------------------------------------------------------- /docs/tools/neofetch/neofetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/neofetch/neofetch/index.html -------------------------------------------------------------------------------- /docs/tools/nl/nl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/nl/nl/index.html -------------------------------------------------------------------------------- /docs/tools/passwd/passwd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/passwd/passwd/index.html -------------------------------------------------------------------------------- /docs/tools/paste/paste/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/paste/paste/index.html -------------------------------------------------------------------------------- /docs/tools/ping/ping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/ping/ping/index.html -------------------------------------------------------------------------------- /docs/tools/rar/rar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/rar/rar/index.html -------------------------------------------------------------------------------- /docs/tools/reboot/reboot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/reboot/reboot/index.html -------------------------------------------------------------------------------- /docs/tools/redshift/redshift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/redshift/redshift/index.html -------------------------------------------------------------------------------- /docs/tools/rm/rm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/rm/rm/index.html -------------------------------------------------------------------------------- /docs/tools/scp/scp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/scp/scp/index.html -------------------------------------------------------------------------------- /docs/tools/shutdown/shutdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/shutdown/shutdown/index.html -------------------------------------------------------------------------------- /docs/tools/sort/sort/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/sort/sort/index.html -------------------------------------------------------------------------------- /docs/tools/tail/tail/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/tail/tail/index.html -------------------------------------------------------------------------------- /docs/tools/tar/tar.md.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/tar/tar.md.draft -------------------------------------------------------------------------------- /docs/tools/terminator/terminator/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/terminator/terminator/example.png -------------------------------------------------------------------------------- /docs/tools/terminator/terminator/hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/terminator/terminator/hor.png -------------------------------------------------------------------------------- /docs/tools/terminator/terminator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/terminator/terminator/index.html -------------------------------------------------------------------------------- /docs/tools/terminator/terminator/ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/terminator/terminator/ver.png -------------------------------------------------------------------------------- /docs/tools/terminator/terminator/ver_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/terminator/terminator/ver_hor.png -------------------------------------------------------------------------------- /docs/tools/touch/touch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/touch/touch/index.html -------------------------------------------------------------------------------- /docs/tools/tree/tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/tree/tree/index.html -------------------------------------------------------------------------------- /docs/tools/uniq/uniq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/uniq/uniq/index.html -------------------------------------------------------------------------------- /docs/tools/unrar/unrar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/unrar/unrar/index.html -------------------------------------------------------------------------------- /docs/tools/useradd/useradd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/useradd/useradd/index.html -------------------------------------------------------------------------------- /docs/tools/usermod/usermod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/usermod/usermod/index.html -------------------------------------------------------------------------------- /docs/tools/w/w/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/w/w/index.html -------------------------------------------------------------------------------- /docs/tools/watch/watch/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/watch/watch/1.jpg -------------------------------------------------------------------------------- /docs/tools/watch/watch/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/watch/watch/2.jpg -------------------------------------------------------------------------------- /docs/tools/watch/watch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/watch/watch/index.html -------------------------------------------------------------------------------- /docs/tools/watch/watch/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/watch/watch/watch.jpg -------------------------------------------------------------------------------- /docs/tools/wc/wc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/wc/wc/index.html -------------------------------------------------------------------------------- /docs/tools/wget/wget/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/wget/wget/cover.png -------------------------------------------------------------------------------- /docs/tools/wget/wget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/docs/tools/wget/wget/index.html -------------------------------------------------------------------------------- /rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/rain.py -------------------------------------------------------------------------------- /resources/_gen/assets/scss/thesecretbit/book.scss_50fc8c04e12a2f59027287995557ceff.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/resources/_gen/assets/scss/thesecretbit/book.scss_50fc8c04e12a2f59027287995557ceff.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/thesecretbit/book.scss_50fc8c04e12a2f59027287995557ceff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/resources/_gen/assets/scss/thesecretbit/book.scss_50fc8c04e12a2f59027287995557ceff.json -------------------------------------------------------------------------------- /resources/_gen/assets/scss/thesecretbit/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/resources/_gen/assets/scss/thesecretbit/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/thesecretbit/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/resources/_gen/assets/scss/thesecretbit/sass/main.scss_b4f67ac5085b89b62b54c1923e5a9145.json -------------------------------------------------------------------------------- /static/css/custom_01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/static/css/custom_01.css -------------------------------------------------------------------------------- /static/images/Git/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/static/images/Git/git.png -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /static/images/logo.svg.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/static/images/logo.svg.back -------------------------------------------------------------------------------- /static/js/custom_01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit-orbit/the-secret-bit/HEAD/static/js/custom_01.js --------------------------------------------------------------------------------