answersLogoWhite

0

trdfx5tdifyibh cv5yhtn097g

User Avatar

Wiki User

18y ago

What else can I help you with?

Related Questions

What is the abbreviation for Executive Director?

"Dir." though it can be abbreviated differently if the person's title includes more than just the word "director".


How do I appreviate the word director when refering to the director of a business department?

Dir.


What is the abbreviation for associate director?

Dir.Dir.Dir.Dir.Dir.Dir.


Short form for the word director?

Dir


What is an LPT1 on a computer?

It is a device file used for Parallel port. Consider the following command dir >prn (or) lpt1 dir >com1 dir >com2 that is the input is sent to the specified device file or device or a file.


What does a file path start with in Windows?

The drive letter followed by colon backslash dir backslash C:\windows\dir


To make a copy of a file use the command?

You can use cp command to make a copy of a file. cp <file 1> <file 2> If you want to make a copy of the entire directory then use the recursive option cp -r <dir 1> <dir 2>


Unix script that takes two directory names (as arguments) Dir and Dir and deletes those files in Dir that are identical to their namesakes (ie dir1foo and dir2foo have identical contents) in Dir.?

You can use a Unix script that utilizes the diff command to compare files in the two directories. Here's a simple example: #!/bin/bash dir1=$1 dir2=$2 for file in "$dir1"/*; do filename=$(basename "$file") if diff -q "$file" "$dir2/$filename" &>/dev/null; then rm "$file" fi done This script iterates through each file in Dir1, compares it to the corresponding file in Dir2, and removes the file from Dir1 if they are identical.


What is the appointment of directors section 152 of the Companies Act 2013?

Before acting as a director for the company, the nominated director must provide Form DIR-2 with written consent to hold office. Within 30 days of the day the director was appointed, the consent must be submitted to the registrar in Form DIR-12.


Where is the DIR command located?

The DIR or directory command is located in the system32 directory of Windows. It is an executable file that gives DOS access to a user.


What is the abbreviation for Acting Director?

The abbreviation for Acting Director is typically "Acting Dir." This shorthand is commonly used in organizational charts, official documents, and internal communications to denote a person temporarily fulfilling the role of director.


How do you pipe the results of dir to a file?

Assuming you are in command prompt mode, the following will redirect the output of the c:\windows to the file c:\win.txt dir c:\win\*.* > c:\win.txt for %a in (C:\Windows\*) do @echo %a for %a in (C:\Windows\*) do @echo %a >> C:\win.txt