mirror of
https://github.com/walles/moar.git
synced 2024-11-22 21:50:43 +03:00
39 lines
1.0 KiB
Bash
Executable File
39 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -o pipefail
|
|
|
|
# Test all permutations of the following:
|
|
# - Read from file vs from stdin
|
|
# - 'q' to quit vs 'v' to launch an editor
|
|
# - Terminal editor (nano) or GUI editor (code -w)
|
|
|
|
read -r -p "Press enter to start testing, then q to exit the pager"
|
|
clear
|
|
# With --trace we always get a non-zero exit code
|
|
./moar.sh --trace moar.sh || true
|
|
|
|
echo
|
|
read -r -p "Press enter to continue, then q to exit the pager"
|
|
clear
|
|
./moar.sh --trace <moar.sh || true
|
|
|
|
echo
|
|
read -r -p "Press enter to continue, then v to launch a terminal editor, then exit that"
|
|
clear
|
|
EDITOR=nano ./moar.sh --trace moar.sh || true
|
|
|
|
echo
|
|
read -r -p "Press enter to continue, then v to launch a terminal editor, then exit that"
|
|
clear
|
|
EDITOR=nano ./moar.sh --trace <moar.sh || true
|
|
|
|
echo
|
|
read -r -p "Press enter to continue, then v to launch a GUI editor, then exit that"
|
|
clear
|
|
EDITOR="code -w" ./moar.sh --trace moar.sh || true
|
|
|
|
echo
|
|
read -r -p "Press enter to continue, then v to launch a GUI editor, then exit that"
|
|
clear
|
|
EDITOR="code -w" ./moar.sh --trace <moar.sh || true
|