j-cli 12.8.52

A fast CLI tool for alias management, daily reports, and productivity
<!doctype html>
<html lang="zh-CN">
  <head>
    <meta charset="UTF-8" />
    <title>j - 快捷命令行工具</title>
    <script>
      // SPA 404 重定向处理
      // GitHub Pages 项目站点路径是 /<repo-name>/
      // 用户访问 /j/docs 时,需要保存 /docs,然后重定向到 /j/
      var l = window.location;
      var baseUrl = '/j'; // 项目基础路径(不带末尾斜杠)
      // 保存去掉 /j 前缀后的路径,例如 /j/docs -> /docs
      var pathWithoutBase = l.pathname.slice(baseUrl.length) || '/';
      sessionStorage.setItem('spa:redirect', pathWithoutBase + l.search + l.hash);
      l.replace(baseUrl + '/');
    </script>
  </head>
  <body>
    <p>Redirecting...</p>
  </body>
</html>