mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 08:46:16 +00:00
5 lines
123 B
Bash
Executable File
5 lines
123 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# script returns string with everything after the last colon of $1 input
|
|
echo -n $1 | grep -oE '[^:]+$'
|