answersLogoWhite

0

What is the command to turn new data to old data in Linux?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

In a terminal:

mv filename.new filename.old

Note: mv means move. As a destination is not given, the file remains in the original directory, but changed to the new filename.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the command to turn new data to old data in Linux?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which Linux command is equivalent to Windows' MD command?

In a Linux terminal, the command to create a new directory is: mkdir .


On a Linux or Solaris system the command that creates a new group ID and makes the group available for use?

Use the 'addgroup' or 'groupadd' command.


Define an entire new range as a data table?

data table command


How do you create users in Linux?

To create a new user account under any Linux distribution use command called useradd. The system administrator is responsible for creating account. Login as root user (or use sudo command).


How you add the group students to your Linux or Solaris system?

You can create a new group with the command groupadd.Ex. 'groupadd students'


What is MySQL insert command?

The INSERT command in MySQL allows you to enter a new row of data to a table in your database.


Which command is used to create an empty file with file size zero bytes so that you can write in these files later in unix and Linux?

touch newfile will make a new empty file in linux os !


How do you make a new user on Linux?

There is a command called useradd in Linux which you can use to add a new user. Here's an example 1. Add the user (you need to be a superuser to run this command) # useradd test 2. Set the password # passwd test Changing password for user test. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully.


Which command is use for open a new document in Linux?

Depends on what's installed: oowriter gedit abiword lyx kate nano vim emacs


What command is used to copy information to new computer?

paste printer Import or Export Data


What is the difference between select into and createview command?

The SELECT INTO command creates a new table with data from an existing table whereas the CREATE VIEW command creates a view i.e., a virtual table from an existing table.


Does a new table exist after joins in sql?

no. a new table does not exist after a join command. All that is doing is temporarily pulling the data from the tables. If this command was one that you would want to do often, you can create a VIEW, which is a virtual table. It is an object that pulls data from one or more tables based on your search criteria.