Skip to content

Commit

Permalink
batman
Browse files Browse the repository at this point in the history
  • Loading branch information
conneroisu committed May 19, 2024
1 parent fd9a098 commit 060f0e9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions scripts/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
# timeout 120 nvim --headless

# Trap SIGTERM
#
# Write a bash script that traps SIGTERM signal and then runs: timeout 120 nvim --headless

# Function to handle SIGTERM signal
handle_sigterm() {
echo "SIGTERM received. Exiting nvim."
exit 0
}

# Trap SIGTERM signal and call the handle_sigterm function
trap 'handle_sigterm' SIGTERM

# Start nvim in headless mode with a 120 seconds timeout
timeout 120 nvim --headless &

# Wait for nvim to finish
wait $!

0 comments on commit 060f0e9

Please sign in to comment.