-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsteps.java
More file actions
21 lines (20 loc) · 876 Bytes
/
steps.java
File metadata and controls
21 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Author: Eshwar RA
//mail : eshwarra5@gmail.com
//Description:
//This tool can be used in linux servers if you dont have any knowledge of the
//linux command line. Please comment/contribute for more tools.
class steps{
Scanner sc = new Scanner(System.in);
public void apt(){
System.out.println("1] installing packages/software");
int opApt = sc.nextInt();
System.out.println();
if(opApt == 1){
System.out.println("Learn to install packages on debian using apt =>");
System.out.println();
System.out.println();
}
public static void main(String[]args){
System.out.println("Welcome to the system toolkit");
System.out.println();
System.out.println("using apt for installing and removing packages/software");