pycharm写shell脚本

configuration

explore “bash support ” in setting of pluge
then install it.
you can creat a ‘.sh’ flle, then write code in it.

basic shell language

echo -e "abd\\n dd"
yourname='liming'
for skill in tea book; do
  echo ${yourname}' is good at '${skill}
done
printf "the length of string is %d" % ${#yourname}

你可能感兴趣的:(pycharm,数学建模,ide)