Skip to content

Commit 06f0563

Browse files
committed
List all paths in PATH
1 parent 40511b6 commit 06f0563

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/envinfo.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
- name: disk
1515
run: df -h
1616
- name: bin
17-
run: ls /usr/bin
17+
run: |
18+
echo "PATH=$PATH"
19+
IFS=: read -r -d '' -a ARR < <( printf "%s" "$PATH" )
20+
ls "${ARR[@]}"
1821
1922
colors:
2023
name: Color test

0 commit comments

Comments
 (0)