mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# adapted from...
|
|
# https://github.com/rwxrob/dot/blob/main/scripts/ucmt
|
|
|
|
while IFS= read -r line; do
|
|
echo "${line#* }"
|
|
done
|