Questions tagged [command-line-interface]

A command-line interface (CLI) is a mechanism for interacting with a computer operating system or software by typing commands to perform specific tasks.

A command-line interface (CLI) is a mechanism for interacting with a computer operating system or software by typing commands to perform specific tasks.

1564 questions
0
votes
2 answers

Using DSMOVE to move inactive computers to a new OU

in regards to this post of mine Clean up Active Directory I was trying to run the command dsquery Computer -inactive 52 | DSMOVE -newparent OU=Test,OU=Devices,DC=domain,DC=com,DC=au When I run this command i get the following error message dsmove…
0
votes
1 answer

tcsh PATH env variable not respected amazon web services

I've got an Amazon EC2 instance with the 64bit Linux AMI. I changed my shell to tcsh and then set up .tcshrc with PATH = ".:/usr/local/lib/play-1.1:$PATH" After a $ source ~/.tcshrc $ echo…
notbrain
  • 209
  • 3
  • 16
0
votes
2 answers

Newbie question: How do I connect to Oracle db from linux command line

I had experience with mysql before, but know completely nothing about Oracle DB. Recently, I'm assigned to add a simple feature to an existing system. Albeit simple, I need to connect to the db and get some knowledge about the existing database. But…
Haozhun
  • 267
  • 2
  • 5
  • 10
0
votes
1 answer

amount (share) folder in Unix-AIX by using smitty?

how i can amount folder in unix-aix by using smitty command ???
Mohammad AL-Rawabdeh
  • 1,612
  • 12
  • 33
  • 54
0
votes
1 answer

how can i execute remote console applications in windows

I would like to know how I can run remote applications on Windows Machines. Until now I have been using Windows Powershell remote, that works fine, but only to execute cmdlets. I want to be able to execute any command line application, like launch a…
mjsr
  • 181
  • 7
0
votes
1 answer

Batch file code to find and rename all files ending in a space?

We host Macintosh files on our Windows 2008 servers. They have files like somegraphic.eps ._somegraphics.eps (hidden) Many times our users will add non-standard characters to the files, like bullets and spaces at the end of the file names. It…
Zachary Scott
  • 227
  • 2
  • 14
0
votes
1 answer

RealVNC command-line switches

I'm creating an application for our helpdesk guys. Long story short, part of their job is to remotely administer boxes we install at client sites, and I'm trying to make that as painless as possible. To do this, I need to be able to start RealVNC…
KeithS
  • 135
  • 1
  • 2
  • 12
0
votes
4 answers

Removing old cache files - command help

I'm trying to write a command to help clear up old cache asset files. The files are always either .css,.javascript,.css.gzip or .javascript.gzip and i want to delete all files older than 2 days old. I started with this command to test before passing…
robjmills
  • 990
  • 9
  • 26
0
votes
2 answers

Reset shell margins or output?

I have two problems, in both cases the problem usually occurs when I resize my terminal client xterm. When ssh'd into a server all the output from commands doesn't scroll. It doesn't happen right away. Occasionally the margins don't resize when the…
frogstarr78
  • 485
  • 7
  • 18
0
votes
1 answer

configuring oracle-ds.xml file in jboss

how can I connect jboss with database and how can I configure oracle-ds.xml
0
votes
2 answers

powershell run java process problem

I'm trying to run a java process via Powershell in Windows XP. Here's the command: java.exe -cp .;./common.jar -Dcontext=atest1 -Dresourcepath=. DW_Install So, the classpath is . and .\common.jar (I think java takes the wrong slashes, right?) …
0
votes
1 answer

Jboss-4.0.5 Run.bat error ? (OS=Windows XP)

wehen I execute the Run.bat file in Jboss-4.0.5 the following error appear :- Error: no server JVM at C:\Program Files\Java\jre6\bin\server\jvm.dll'. Press any key to continue . . . I download JDK1.5.0_22 on other hand what is I should change to…
Mohammad AL-Rawabdeh
  • 1,612
  • 12
  • 33
  • 54
0
votes
1 answer

Show command prompt on reboot

In one of my linux machines, when i give reboot command at the shell command prompt then press enter, i get another command prompt and then the system reboots. $reboot $ But in one of my office Linux machines, when i give the reboot command, it…
LinuxPenseur
  • 443
  • 1
  • 6
  • 16
0
votes
2 answers

how i can create hidden folder in unix-AIX Version 6.1

I try this command mkdir .done but it does not work. How does one create a hidden folder?
Mohammad AL-Rawabdeh
  • 1,612
  • 12
  • 33
  • 54
0
votes
2 answers

remotely running find -exec options

I'm trying to setup a bash process for deploying my django project onto a linux server. Through cygwin, I'm running a script that is calling scp to copy my files over. Is there a similar command to delete *.pyc files. As of now, I've only been able…