5 lines
201 B
Bash
5 lines
201 B
Bash
#!/bin/bash
|
|
URLROOT="https://github.com/atom/atom/releases/download/v1.24.0"
|
|
LEPKG="atom.x86_64.rpm"
|
|
cd /tmp && wget -q -t 5 -T 5 -w 5 -4 -nd "$URLROOT/$LEPKG" && dnf install -y $LEPKG && exit 0
|
|
exit 1 |