Skip to content

Instantly share code, notes, and snippets.

View omarmurcia's full-sized avatar

Omar Murcia omarmurcia

View GitHub Profile
@omarmurcia
omarmurcia / CreatePOAndLineD365.xpp
Created June 2, 2021 20:11
Create PO and PO's Line - D365
void clicked()
{
PurchTable purchTable;
PurchLine purchLine;
InventDim inventDim;
NumberSeq numberSeq;
//add by fanddy
AxPurchTable axPurchTable;
AxPurchLine axPurchLine;
@omarmurcia
omarmurcia / MostCommonLinuxCommands.txt
Last active September 5, 2020 02:09
General Linux Commands
//Obtener la versión de Linux
uname -mrs
//Obtener la ruta absoluta actual en consola
pwd
//Muestra el listado de contenido en el directorio actual
ls
//Para listado más detallado (long)
ls -l
//Para listado más detallado y ordenado por orden de creacion/modificación más reciente
ls -lt