answersLogoWhite

0


Best Answer

You need to be more specific in your question - the use of 'convert' may mean different things. What is the net effect of what you are trying to do?

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a shell script that converts multiple files to a directory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a shell script that copies multiple files to a directory?

why not use the cp command to copy multiple files, i.e. cp file1 file2 file3 dir Rick


Write a shell program using the if-the-else to test whether a variable name is a directory or a file?

# shell script example if [ -f $1 ]; then echo $1 is a file elsif [ -d $1 ]; then echo $1 is a directory fi


Write a shell script file called letter1 After running the script it will prompt the user for an English alphabet confirm the alphabet chosen and then search the current directory for all files?

Question is too vague; what do you mean by 'confirm the alphabet chosen'?


Write a shell script to display the smallest file name in respect of the string length among the list of files available in the current directory?

ls-lS | tail-1


How do you you write a script?

You write a script by writing there name then writing what they say simple


Should Kids Have To Write In Script?

yea i think kids could write and script.... i think its cool my friends like to write in script lolz


What are the steps to writing a script?

First you need a set of characters, a conflict, a theme, a situation and a resolution. Develop your story and write an outline. With your outline, you can begin expanding your idea into three acts, and write your script. Using a proper script format, write 90 to 120 pages -- one page equals about one minute of film time. With your completed draft, you can begin re-writing your script, so that you can make your script the best it can be. You can expect to craft multiple re-writes before your script is at its best.


What does The Script mean?

The prefix script- means to write.


What does the prefix script mean?

The prefix script- means to write.


Write a shell script to sort all the files in the current directory in an alphabetical order and direct the sorted list to a new file?

The following simple shell command lists the contents of a directory (verbose), and redirects the output to 'newfile.txt': ls -l > newfile.txt See related links.


How can you make a script?

Write it.


Write a shell script to create two directories and store five files in one directory using the related commands and to transfer all the Files to another directory?

#!/bin/sh mkdir homework lazyass for i in $(seq 5); do touch homework/file-$i; done mv homework/* lazyass