Created
February 9, 2019 16:41
-
-
Save zfenj/305ec0b0ee88a0a668228b91998f6d6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bash: How to output command to next prompt for user to use? | |
Source: https://superuser.com/a/1130773 | |
MY_COMMAND="ls" | |
MY_PARAMS=() | |
read -a MY_PARAMS -p $MY_COMMAND | |
exec $MY_COMMAND ${MY_PARAMS[@]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment