feat: add cut_1()

This commit is contained in:
Martin Wimpress 2024-04-16 22:01:44 +01:00 committed by Martin Wimpress
parent d2797b6834
commit febb854aa8
1 changed files with 5 additions and 0 deletions

View File

@ -718,6 +718,11 @@ function os_homepages(){
echo "${HOMEPAGE}" echo "${HOMEPAGE}"
} }
# Get string before first whitespace (HASH)
function cut_1() {
cut -d' ' -f1
}
function releases_alma() { function releases_alma() {
echo 9 8 echo 9 8
} }