Easy-LAN-Share/share.sh
2021-07-21 15:39:53 +00:00

15 lines
343 B
Bash

#!/bin/sh
# Get IP address
echo "Your IP address is "$(ip route get 1.1.1.1 | grep -oP 'src \K[^ ]+')
if [ "$#" -ne 1 ]; then
ln $1 . # Link file to current directory
else
xdg-open share.txt # Open file in default editor
fi
# Start Python's HTTP server
echo "Press Ctrl-C to stop the server when you are done"
python -m http.server