Posts tagged as:

Bash

Hack: Mange Fluctuating Wireless

September 24, 2006

I am trying this small script with a so called gui . This helps managing my wireless in the extreme conditions. Just a shell script. Run the script as root otherwise it’ll not work.
Get the script here or copy the code below.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
#
# Author – Kulbir Saini, IIIT Hyderabad.
# Home – http://saini.co.in/
# KWirelessManger – Just for fun.(It [...]

Read the full article →

Hack: Mail Filter – Shell Script

March 7, 2006

This is an attempt by me to filter mails on a Linux machine. You can run this file on your home directory at mail server and it will help you to sort mails on the basis of

From which user the mail has come or from which domain it came,
to which user or domain mail was [...]

Read the full article →

Hack: Graphical Implementation of CP Command

December 3, 2005

To use this graphical interface do as directed below:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
##############################
# Author – Kulbir Saini #
# Home – http://saini.co.in/ #
##############################
 
if [ $1 == -i ] || [ $1 == -f ];then
if [ ! -s $2 ] && [ ! -f $2 ] [...]

Read the full article →