Quest for the most useless command


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Quest for the most useless command
# 1  
Old 01-04-2014
Question Quest for the most useless command

I wrote by accident:
Code:
cd .

and even hit ENTER.

Then I realized this is probably the most useless command that you can imagine. Yes, perhaps it could assert that there is still a working filesystem, but I am not sure about it.

What do you think?
Can you think of any more useless commands? Smilie
# 2  
Old 01-04-2014
this thread is the most useless thread. ?
This User Gave Thanks to kurumi For This Post:
# 3  
Old 01-04-2014
Quote:
Originally Posted by kurumi
this thread is the most useless thread. ?
...haha.. my initial thoughts exactly ....
This User Gave Thanks to Neo For This Post:
# 4  
Old 01-04-2014
Code:
true

in shell can always be replaced by the built-in command
Code:
:

These 2 Users Gave Thanks to MadeInGermany For This Post:
# 5  
Old 01-04-2014
Quote:
Originally Posted by MadeInGermany
Code:
true

in shell can always be replaced by the built-in command
Code:
:

Note that in most shells true is a shell builtin as well:

Code:
[root ~]# for _sh in bash ksh mksh dash zsh; do 
  printf '%s: %s\n' "$_sh" "$("$_sh" -c 'type true')"
done 
bash: true is a shell builtin
ksh: true is a shell builtin
mksh: true is a shell builtin
dash: true is a shell builtin
zsh: true is a shell builtin

And it's definitely more readable than `:' Smilie
# 6  
Old 01-05-2014
Quote:
Originally Posted by colemar
I wrote by accident:
Code:
cd .

and even hit ENTER.

Then I realized this is probably the most useless command that you can imagine. Yes, perhaps it could assert that there is still a working filesystem, but I am not sure about it.

What do you think?
Can you think of any more useless commands? Smilie
After a
Code:
cd .

you should check the success with
Code:
ls -d

# 7  
Old 01-05-2014
And I am guilty occasioanlly... ;o)
Code:
echo -n "" > /path/to/emptyfile
printf "" > /path/to/emptyfile
touch /path/to/emptyfile

And others that require a command...

Instead of:-
Code:
> /path/to/emptyfile

Also I thought : is a NOP placeholder or am I missing something; e.g.
Code:
useless_function()
{
        : # Do nothing.
}

Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. What is on Your Mind?

Fighting useless use of cat

Fighting UUOC cat filename|while read line; do ... with sed 's/cat *\(*\) *|/<\1/g' I found that while loops are converted to <filename while read line; do ... Syntax error! Why syntax error? It would perfectly make sense. Further, read the article how-would-you-like-your-loops-served-today... (5 Replies)
Discussion started by: MadeInGermany
5 Replies

2. Shell Programming and Scripting

Useless Cat usage

cat ~/text.xt | while read line do echo ${line} | perl -pe 's/(\d+)/localtime($1)/e' done how can i efficiently re-code the above? also, no matter how i run this, i'm not getting the current/correct date. the contents of the "text.xt" looks like this: SERVICES... (2 Replies)
Discussion started by: SkySmart
2 Replies

3. UNIX for Advanced & Expert Users

Quest on NFS with 1 Server & 2 Clients

Hello; I work now with a team which has based her "applications" on the following schema: 1 NFS client C1 (linux redhat 5) writes a file fic.dat on a NFS SERVER S (RH 5) Another NFS client C2 is waiting for the same file fic.dat (on NFS server S1), and, when "fic.dat" appears, then makes... (8 Replies)
Discussion started by: SolarMax
8 Replies

4. UNIX for Advanced & Expert Users

IBM Quest Market-Basket Synthetic Data Generator

Hi All, I am trying to install the IBM data set generator. I have to use the Solaris to use this tool. The following link is supposed to tell the steps on how to use the IBM tool on the Solaris server. IBM Quest Market-Basket Synthetic Data Generator Unfortunately, I don't understand what is... (2 Replies)
Discussion started by: loollool
2 Replies

5. UNIX for Dummies Questions & Answers

useless command

Hi, I came across with this line "set -x" in the beginning of a script, but i can't find one logic reason for this... should be something else after, i think.... anyone can help? tanx (2 Replies)
Discussion started by: cabresto
2 Replies

6. UNIX for Dummies Questions & Answers

a quest regarding the path?

Hi mates, A newbe in UNIX world. how can i add a specific path to my default unix path. ie i want to add a directory let is say /abdul to the path and whenever i log in unix should recognize it. it is mostly importnant when i use the cc command to compile my c programs ...and i have to use ./cc... (2 Replies)
Discussion started by: abdul
2 Replies
Login or Register to Ask a Question