Posts tagged as:

Command

Humour: Funny Behaviour of rm Command

June 5, 2006

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[root@localhost pub]# ll
total 1648
-rw-r–r– 1 root root 85648 Jun 5 23:52 14thtop.png
-rw-r–r– 1 root root 262852 Jun 5 23:52 orkuthelper.png
-rw-r–r– 1 root root 143804 Jun 5 23:52 shot1.png
-rw-r–r– 1 root root 160552 Jun 5 23:52 shot2.png
-rw-r–r– 1 root root 159934 Jun 5 23:52 shot3.png
-rw-r–r– [...]

Read the full article →

How To: Troubleshoot SCP Command

February 2, 2006

Some times we face problems in transferring the data from one machine to other machine using scp. Actually the scp command is executed successfully but the data is not transferred. As the .bashrc and not the .bash_profile file of the system to which the data is being transferred is executed. If the .bashrc of [...]

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 →