What does the little squiggly ~ do in Linux?

I have two instances of it being used and I am wondering what each does:

  1. service=~

  2. mv ~/Desktop/Service$version.tgz $service

What does the little squiggly ~ do?

Then, after that that, what would cd $service do?


Solution 1:

The squiggly thing is called a "tilde".

It expands to your home directory.

Try

echo ~
echo $HOME

Both statements put your home directory by itself on a line..

See bash Tilde Expansion for details.

Solution 2:

The "squiggly" is called a tilde. It is used to refer to your home directory which on Linux, is normally /home/username. It is also stored in the $HOME environment variable. Expanding the ~ to the location of the home directory is the job of the shell (like zsh or bash) or file manager (like Nautilus) and not the filesystem or OS its self.

You can also use this to refer to another user's home directory. For instance, if the other user's username is bob, you could refer to their home directory with ~bob, which will be expanded to /home/bob/.

The first example you've given sets the variable service to ~, so it corresponds to your home directory. This is equivalent to service=/home/username or service=$HOME.

The second example copies the file ~/Desktop/Service$version.tgz (or /home/username/Desktop/Service$version.tgz) to /home/username. This command is equivalent to:

mv ~/Desktop/Service$version.tgz ~

or

mv ~/Desktop/Service$version.tgz $HOME

or

mv ~/Desktop/Service$version.tgz /home/username/

The third will change the current working directory ($PWD) to /home/username/. This is equivalent to:

cd /home/username/

or

cd $HOME

Solution 3:

In both #1 & #2: ~ is your home directory, so if you are qwerty it will likely be the directory /home/qwerty. So try ls ~ to see that.

For #1: it looks to me like the variable service is being defined as your home directory.

That means after #2 has moved the tgz file from the Desktop subdirectory to your home directory, #3 then changes to the home directory.

Solution 4:

It looks like the commands are doing the following.

  1. Assign a variable called service to your home folder location, for example:

    /home/user
    
  2. It moves the file from your desktop to the top level of your home directory, for example:

    /home/user/Desktop/Service$version.tgz $service
    
  3. The script then changes the directory to the top level of the home directory.

So, all the script is doing is just cleaning up your desktop by moving the file to your /home/user folder instead.