mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-16 07:30:16 +00:00
Added PowerShell snippet to change timestamps on .sla files, suggested by @Ionut1994
parent
b74edc4f07
commit
d61b532304
@ -65,4 +65,12 @@ On Linux, try
|
||||
touch `find . -name '*.sla'`
|
||||
```
|
||||
|
||||
from the installation directory.
|
||||
from the installation directory.
|
||||
|
||||
On Windows, try
|
||||
|
||||
```bash
|
||||
Get-ChildItem -Recurse -Include *.sla | ForEach-Object { $_.CreationTime = Get-Date; $_.LastWriteTime = Get-Date }
|
||||
```
|
||||
|
||||
in the PowerShell console.
|
Loading…
Reference in New Issue
Block a user