Houdini to UNIX commands.
Operating system / application integration.
Date Created:Friday December 29th, 2006 03:41 AM
Date Modified:Wednesday July 30th, 2008 02:53 AM
//UPWD
//upwd prints the current unix path, or working directory
/UCD
//ucd navigates the unix path
ucd $HOME
//UMKDIR
//creates a folder in the current unix path
umkdir newfolder
//URM
//removes files
urm filename
//ULS
//prints a list of files/folders in the current unix path.
//This can also be done by:
echo `system("ls")`
//using uls, you can:
//lists only directories
uls -d
//lists only files
uls -f
//lists only files that start with dop
uls -f dop*
//lists a path where you specify
uls -p $HOME
