CD is either Change Directory command in batch processing, or refers to the data storage device CD-ROM

learn more… | top users | synonyms

0
votes
3answers
33 views

How to make if statement

I need to check creating and changing dir for the new directory and print error ion fail someone from them like the following: [ mkdir tmp && cd tmp ] || echo "error" But I'm getting the ...
0
votes
3answers
35 views

cmd /C “MyBatch.bat Param1 Param2 Param3” works under WinXP but fails under Win7

This command is in the middle of a large batch file that has worked problem-free for more than 5 years under Windows XP, but when run under Windows 7(32bit) it reports "MyBatch.bat is not recognised ...
-5
votes
0answers
70 views

Burn files to cd c++

Hi i am trying to burn files to a cd using c++. I found this VScript code from msdn but unfortunately they didnt have any c++ examples here is the VScript code Option Explicit ' *** CD/DVD disc ...
-1
votes
0answers
21 views

How play video on data DVD/CD website (offline)

Hi i found this here : [Playing videos using flash 'offline' Playing videos using flash 'offline' But this solution is not free and i search for something free and more simple with ...
-1
votes
3answers
64 views

Issues with `cd` after `alias` [closed]

I read this command somewhere on Twitter and executed it in my Terminal and it seems it removed the cd package completely from the OS. alias cd="say -v cello" What does this command do? Can you ...
1
vote
3answers
67 views

How do i find the current directory of a batch file, and then use it for the path?

I am fairly new to batch files. I have a batch file that I intend to distribute to our customers to run a software task. We distribute them as a folder or .zip with the files inside. Inside, there ...
0
votes
1answer
65 views

Applescript to open application from CD Drive

I have a flash program on CD which i need to auto run when Cd insert in drive. tell application "Finder" activate if exists disk "MYRIAD" then tell application "Mac" activate end tell ...
-1
votes
0answers
30 views

How to end the command cd keys?

How to end the command cd keys? Ksh script, solaris. cd -- "$user_path" working just on bash function mov_dir { echo "Введите путь для перехода:" read user_path cd "$user_path"; }
-1
votes
1answer
92 views

implementing cd system call using C- if condition

here is a code that implements cd system call using C. the problem with this code is that its not entering the if condition if(strcmp(buffer,"cd") == 0). and i cant understand why.. any help will be ...
0
votes
1answer
24 views

Wild card search to CD

I'm trying to search for the first matching directory with a wildcard in a bash shell script, it seems to be working fine on a few systems, and not on others. Is there any way around this to have it ...
0
votes
0answers
17 views

Copy data from DVD to HDD

I have lots of CDs/DVDs (1000s) that contain plain files (i.e., non-music/non-movie). I want to move data on them to HDDs for easy backup and management. I am looking for some hardware where you place ...
0
votes
1answer
57 views

Node - Prevent child process from going in to parent directory

I am spawning a process from my node server, that is in /tmp/running/username (it is a node process uploaded by the user) how do I prevent it from reading (or knowing of the existence of) anything ...
0
votes
0answers
12 views

How can I extract the answers from a CD test? [closed]

I bought a CD that has over 2000 questions about medical assistant related topics. However, the way that the UI is set up makes it a less than ideal way to study. I want to have the question and the ...
0
votes
2answers
96 views

How to use cd terminal command in Python

Question How can I change the active directory on the raspberry pi using cd and the subprocess module? Background Since I absolutely hate to use the command line, I am trying to create a basic GUI ...
1
vote
6answers
186 views

Run cmd commands through java

I found several code snippet for running cmd commands through java class, but i could not get it, This code for opening the cmd public void excCommand(String new_dir){ Runtime rt = ...
1
vote
1answer
43 views

Bash cd command autocompletion for custom alias

Let's say I have a simple function serving as an alias to cd. c(){ cd "$@"; } How can I get the original autocompletion of cd work for my new function? Note that cd only autocompletes directory ...
0
votes
2answers
47 views

IO operations - Why not cd?

I have no idea if I'm right or wrong on this, but based on common sense, command file would be slightly faster than command dir/file or command dir1/.../dirN/file. Now, assuming that's true, let's ...
0
votes
1answer
32 views

cd to symbolically linked directory fails in cron environment

I have a server running Ubuntu 12.04, which we use to host a Rails app. I'm running a task on cron, which is made up of a couple of unix commands separated by && - e.g: cd ...
0
votes
2answers
58 views

terminal cant do ls or cd

Can anybody explain what is wrong with my terminal: $ echo $PATH =/usr/local/bin $ ls -bash: ls: command not found $ cd -bash: find: command not found Why won't these commands work? Help? ...
0
votes
1answer
55 views

how to create a download files from the interactive cd

I have a college assignment, I had to create a function to download a file, but I put file in a directory on the interactive cd that I created using flash abode. how do I make this work? Any help is ...
0
votes
0answers
116 views

Identifying manufacturer of optical disk drive from software (Windows)

I am interested in a fairly general method of finding the manufacturer of an optical disk drive on a Windows machine. I am hoping the answer is either "here is a utility you can run" or "here is where ...
2
votes
1answer
67 views

How to scan a data CD faster?

I want to create a tree of the CD content in memory using structures and std::vector, for both directories and files. I won't scan the files in detail, i'm only interested if they are directories or ...
0
votes
1answer
76 views

Trouble with the MOVE command and the %CD% variable in my Batch File

Background I am trying to move the .minecraft's to the Windows roaming folder. Afterwards, I want to return it to its original position. I don't understand what I am doing incorrectly - perhaps the ...
0
votes
2answers
61 views

Unix: chaining commands

I have learned that ';' is equivalent to 'enter' in the command line. But I have this situation. My directory has the following configuration: Directory A contains directories B and C. In currently ...
3
votes
1answer
101 views

Access to CD-ROM using Java

I would like to ask if there is any possibility access to cdrom device via sound libraries in Java. What i want to do is to mute CD Analog. I looked for using google long time but there is no ...
0
votes
0answers
149 views

C#: Tamir.SharpSsh unable to change directory in unix

I am currently making a File-Dialog-like form in C# that browses directories on a unix server. I have a bit of a trouble getting the 'cd ..' command to work. Here is an example of my code var ...
0
votes
0answers
45 views

MINIX 3 boot problems

I am trying to install MINIX 3.2.0, and I have a boot CD, made with FreeISOBurner (it has worked in the past). I boot into the CD, and I get an error message when it tries to fond the boot CD: Not ...
0
votes
0answers
66 views

determine date when cd/dvd media was burned

Given a finalized cd/dvd media containing data, I need to retrieve the date when media was burned ( or finalized in the case of a multisession disk ). I thought it would be (pretty) trivial, but after ...
1
vote
3answers
210 views

Reading data from CD-ROM or DVD using the browser

I am building a webapp for a friend where the user interface should allow users to press a button, and it should somehow upload all of the contents of the CD-ROM/DVD they have inserted, to a server. ...
1
vote
2answers
500 views

Identify CD drive and eject using bat or vbs while in WinPE without external files

I need to identify the CD drive and eject the tray. This is executed while booted in WinPE, so the WMP eject function is not available. This script will be used on various computer ...
0
votes
4answers
92 views

cd won't work on this path. Any ideas?

In a section of a script I am writing, I output a list of paths into a temporary text file for use later with cd. I am using sed to replace spaces in directory names with '\ ' so that I also make the ...
0
votes
1answer
28 views

alias - cd followed by dir

how can I define an alias so that when I do 'cd Abcd', where 'Abcd' is the name of a directory, the directory is changed to 'Abcd' and is followed by dir to show the contents of the directory.
2
votes
2answers
135 views

one command to create and change directory

I'm searching for just one command — nothing with && or | — that creates a directory and then immediately changes your current directory to the newly-created directory. (This is a ...
0
votes
2answers
123 views

Using cd ~ with system function in C/Objective-C doesn't cd properly

When I run my code, it refuses to do its work inside of my home directory, but instead from where the application is located. system("cd ~"); system("curl ...
-1
votes
1answer
67 views

Programmatically open and close CD-Rom even when partially closed [closed]

I always wanted to develop this application that closes and opens cd rom drive based on the song that is playing, so that it will open and close to the beat of the song. Is it possible to do with any ...
2
votes
0answers
59 views

A Zinc (4.x) application can't be opened from CD, but can open from desktop in Mac

I compiled a faily simple application that just loads images, text and opens some pdfs via mdm.System It works exactly as intended on Windows, but on Mac, it doesn't even try to launch when it's on ...
1
vote
5answers
433 views

Bash script to change parent shell directory

What I'm trying to do I've created a shell script that I've added to my $PATH that will download and get everything setup for a new Laravel project. I would like the script to end by changing my ...
0
votes
0answers
157 views

How to create autorun.inf for autoplay .avi video from cd?

How to create autorun.inf for autoplay .avi video from cd ? needed immediate solution ....!
0
votes
2answers
122 views

Can I execute the “cd” command to change directories using PHP CLI?

I created a script using PHP CLI that I would like to have cd me into a directory based upon my command line input. While I can get the PHP execution commands to echo output (e.g. echo ls -al), I ...
1
vote
2answers
232 views

cd(1) and variables with spaces (cygwin)

I've been having quite an unusual problem. In my .bashrc file, I have set a variable to a path name with spaces in it. I had a feeling this would cause problems, but I played around with setting an ...
0
votes
0answers
26 views

How to move one directory back in Thunar when path contains symbolic links?

I want to move one directory back in Thunar when I get into by symbolic link. I know that in terminal I can use cd -P but I want to obtain this behavior in Thunar.
-1
votes
1answer
38 views

Change to xth directory terminal

Is there a way in a unix shell (specifically Ubuntu) to change directory into the xth directory that was printed from the ls command? I know you can sort a directory in multiple ways, but using the ...
0
votes
1answer
45 views

cd to a search result with dir in cmd

I want to know how to change to the directory containing a particular file name, using a batch file. First, I want to search for a particular file using the dir command. I know there will only be ...
1
vote
6answers
475 views

In shell script, how to change current directory safely with variable?

The following shell script changes current the directory to the desktop. v=~/Desktop/ cd $v pwd # desktop The following script changes the current directory to home directory instead of generating ...
2
votes
2answers
192 views

UNIX - How to write a bash script to automatically change to next/previous directory

Say I have this folder structure: MainFolder Folder1 Folder2 Folder3 ... Folder200 I want to write a script that, if I am current inside Folder2 and execute the script, it will ...
0
votes
1answer
204 views

Modify .iso file with Python

I have an ISO image that I would like to distribute. However, to make setup easier for the user, I would like add a unique .config file to each .iso file. Is there a way to use python to modify the ...
0
votes
1answer
1k views

change directory (CD) using ant script

How to change directory (CD) using ant script?Is there any task in ant which does: cd
2
votes
2answers
98 views

How do I restrict cd arguments to directories in bash?

Currently, when I cd re[tab][tab], bash gives me options including files and directories. Since cd only allows directories as arguments, giving me non-directory options doesn't seem to offer any ...
2
votes
7answers
115 views

Go few directories up in linux

When I want to go one directory up I use cd .. But when I want to go 7 directories up is there any way to do this other than just typing 7 times cd .. ?
0
votes
1answer
53 views

running python programs from a CDrom

I have some programs written in python 2.5.4, using the pygame and matplotlib/pyplot libraries on my computer and I want to know whether it is possible to transfer and run python (and the files) from ...

1 2 3 4