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
# Enable git prompt functionality | |
source /usr/share/git-core/contrib/completion/git-prompt.sh | |
# Set the PS1 | |
PS1='\u@\h:\[\033[34m\]\w\[\033[32m\]$(__git_ps1)\[\033[0m\] \$ ' |
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
const fs = require('fs'); | |
const path = require('path'); | |
const envFilePath = path.resolve(__dirname, '.env'); | |
// Function to read the .env file and return its content as an array of lines | |
function readEnvFile() { | |
return fs.readFileSync(envFilePath, 'utf8').split('\n'); | |
} |
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
@echo off | |
Rem ######## Replace Log File Location ########## | |
set logfile=logFile1.txt | |
echo. | |
set /p IP="Enter IP Address to ping: " | |
echo. | |
echo. | |
set /p INTERVAL="Enter time (in seconds) to wait between pings: " |