Windows 11 Sistem Gereksinimleri

İşte PC’nizde Windows 11 çalıştırmak için ihtiyacınız olan özellikler. Windows 11 şimdi çıktı ve Microsoft, iş için doğru donanıma sahip olduğunuzu varsayarak, 2022’nin ortalarına kadar mevcut Windows 10 kullanıcılarına ücretsiz …

Devamını Oku..

Bash Script Sourcing

Sourcing a file Sourcing a file is different from execution, in that all commands are evaluated within the context of the currentbash session – this means that any variables, function, …

Devamını Oku..

Bash Script Copying (cp)

OptionDescription-a,-archiveCombines the d, p and r options-b, -backupBefore removal, makes a backup-d, –no-deferencePreserves links-f, –forceRemove existing destinations without prompting user-i, –interactiveShow prompt before overwriting-l, –linkInstead of copying, link files instead-p, …

Devamını Oku..

Bash Script Functions

Functions with arguments In helloJohn.sh: #!/bin/bash greet() { local name="$1" echo "Hello, $name" } greet "John Doe" # running above script $ bash helloJohn. Hello, John Doe If you don’t …

Devamını Oku..

Bash Sctipt Arrays

Array Assignments List Assignment If you are familiar with Perl, C, or Java, you might think that Bash would use commas to separate array elements,however this is not the case; …

Devamını Oku..