33 lines
561 B
Bash
Executable File
33 lines
561 B
Bash
Executable File
###
|
|
# @Author: tackchen
|
|
# @Date: 2021-12-16 17:39:00
|
|
# @LastEditors: tackchen
|
|
# @FilePath: /cnchar/helper/publish.sh
|
|
# @Description: Coding something
|
|
###
|
|
|
|
#!/bin/bash
|
|
|
|
# cd $(cd `dirname $0`; pwd)
|
|
# cd ../npm/packages
|
|
|
|
# bast_path=$(pwd)
|
|
|
|
# echo "$bast_path/cnchar"
|
|
|
|
# packages=("cnchar" "cnchar-poly" )
|
|
|
|
# for package in ${packages[@]}
|
|
# do
|
|
# echo "The value is: $package"
|
|
# done
|
|
|
|
# cd $(cd `dirname $0`; pwd)
|
|
# cd ../npm/packages
|
|
|
|
# bast_path=$(pwd)
|
|
# files=$(ls $bast_path)
|
|
# for filename in ${files[@]}
|
|
# do
|
|
# echo "$bast_path/$filename"
|
|
# done |