mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-17 18:29:55 +00:00
02ef158748
The script tests the use of an encrypted file system that is created and provided via the File Vault. Furthermore the script can be used for test-driving existing File-Vault containers (created with potentially older File-Vault versions) under the current File-Vault version. This is done via the "LX_FS_DIR_TEMPLATE" env variable. Ref #5062
16 lines
455 B
Bash
16 lines
455 B
Bash
#!/bin/bash
|
|
echo "Hallo Welt!" > file_vault/file_1
|
|
cat file_vault/file_1
|
|
echo "Ein zweiter Test." > file_vault/file_1
|
|
cat file_vault/file_1
|
|
ls -la file_vault/
|
|
mkdir file_vault/dir_1
|
|
echo "Eine weitere Datei." > file_vault/dir_1/file_2
|
|
echo "Mit mehr Inhalt." >> file_vault/dir_1/file_2
|
|
cat file_vault/dir_1/file_2
|
|
echo "Und Sonderzeichen: /§($)=%!" >> file_vault/dir_1/file_2
|
|
cat file_vault/dir_1/file_2
|
|
ls -la file_vault/
|
|
ls -la file_vault/dir_1
|
|
exit 0
|