📄 lspath
字号:
#!/bin/sh# Chapter 14 - Functions# This script demonstrates a simple function called ls path# that lists the directories in $PATH. To use this functions# you need to "require" it into your environment as follows# (assuming you are in the same directory as this script):## . ./lspathlspath() { OLDIFS="$IFS" IFS=: for DIR in $PATH ; do echo $DIR ; done IFS="$OLDIFS"}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -