From f83a133ed9f007fdef2e578459334446e4f0c6bd Mon Sep 17 00:00:00 2001 From: Narsty Date: Sun, 14 May 2023 23:04:34 -0500 Subject: [PATCH] Add files via upload --- Executions/SysNet Info.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Executions/SysNet Info.txt diff --git a/Executions/SysNet Info.txt b/Executions/SysNet Info.txt new file mode 100644 index 0000000..171d609 --- /dev/null +++ b/Executions/SysNet Info.txt @@ -0,0 +1,20 @@ +REM User Information: Includes the username, home directory, and user ID. +REM System Information: Displays details about the operating system. +REM Network Information: Shows network interface information IP address. +REM File and Directory Permissions: Provides permissions and ownership details of files and directories. + +REM Author: Narsty +REM Title: SysNet Info +REM Target: MacOS +REM Version: 1.0 +REM Category: Execution + +DELAY 500 +GUI SPACE +DELAY 1000 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING echo "User Information:" && echo "Username: $(whoami)" && echo "Home Directory: $HOME" && echo "User ID: $(id -u)" && echo && echo "System Information:" && uname -a && echo && echo "Network Information:" && ifconfig && echo && echo "File and Directory Permissions:" && ls -l +