首页 > 技术文章 > bash shell cli tools

xgqfrms 2020-04-04 01:25 原文

bash shell cli tools

before

# create files
$ mkdir app-component

$ cd app-component

$ touch index.html index.css index.js

wanted

# create files, with magic_mkdir (default type=html, js, css)
$ magic_mkdir app-component -type=jsx,scss

# equal to bellow commans
$ mkdir app-component && cd app-component && touch index.jsx index.scss 


思路

  1. npm cli

  2. bash cli

VSCode plugins ???

开发 vscode 插件

https://github.com/xgqfrms/vscode-plugins

// todo


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


推荐阅读